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 332 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
  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. ]
  11. setup(
  12. name="bald",
  13. version="0.1",
  14. author="ActuallyOpenAI",
  15. packages=find_packages(include="bald"),
  16. install_requires=dependencies,
  17. )
Tip!

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

Comments

Loading...