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 781 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
  1. import setuptools
  2. with open("README.md", "r", encoding="utf-8") as f:
  3. long_description = f.read()
  4. __version__ = "0.0.0"
  5. REPO_NAME = "End-to-End-Chest-Cancer-Classification-using-MLflow"
  6. AUTHOR_USER_NAME = "vasalosi"
  7. SRC_REPO = "cnnClassifier"
  8. AUTHOR_EMAIL = "vasalosi@gmail.com"
  9. setuptools.setup(
  10. name=SRC_REPO,
  11. version=__version__,
  12. author=AUTHOR_USER_NAME,
  13. author_email=AUTHOR_EMAIL,
  14. description=REPO_NAME,
  15. long_description=long_description,
  16. long_description_content_type="text/markdown",
  17. url="https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
  18. proect_urls={
  19. "Bug Tracker": "https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
  20. },
  21. package_dir={"": "src"},
  22. packages=setuptools.find_packages(where="src")
  23. )
Tip!

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

Comments

Loading...