Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.py 359 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. from setuptools import setup, find_packages
  2. dependencies = [
  3. "torch",
  4. "jupyterlab",
  5. "pytest",
  6. "pytest-cov",
  7. "gensim",
  8. "pytorch-nlp",
  9. "matplotlib",
  10. "sklearn",
  11. "nltk",
  12. ]
  13. setup(
  14. name="bald",
  15. version="0.1",
  16. author="ActuallyOpenAI",
  17. packages=find_packages(include="bald"),
  18. install_requires=dependencies,
  19. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...