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 964 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
22
23
24
25
26
27
28
29
30
31
32
33
  1. from setuptools import setup
  2. with open("README.md", "r", encoding="utf-8") as f:
  3. long_description = f.read()
  4. ## edit below variables as per your requirements -
  5. REPO_NAME = "Project-DVC-CNN-CatVsDog"
  6. AUTHOR_USER_NAME = "Hamed"
  7. SRC_REPO = "src"
  8. LIST_OF_REQUIREMENTS = ["black",
  9. "dvc==2.45.1",
  10. "tqdm",
  11. "tensorflow==2.8.0",
  12. "joblib",
  13. "Pillow",
  14. "scipy"
  15. ]
  16. setup(
  17. name=SRC_REPO,
  18. version="0.0.3",
  19. author=AUTHOR_USER_NAME,
  20. description="A small package for DVC",
  21. long_description=long_description,
  22. long_description_content_type="text/markdown",
  23. url=f"https://github.com/hamehrabi/Project-DVC-CNN-CatVsDog",
  24. author_email="mehrabi.hamed@outlook.com",
  25. packages=[SRC_REPO],
  26. license="MIT",
  27. python_requires=">=3.8",
  28. install_requires=LIST_OF_REQUIREMENTS
  29. )
Tip!

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

Comments

Loading...