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 815 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
  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 = "DEEPCLASSIFIER_PROJECT"
  6. AUTHOR_USER_NAME = "Naresh_vssc"
  7. SRC_REPO = "deepClassifer"
  8. AUTOR_EMAIL = "naresh_ks@vssc.gov.in"
  9. setuptools.setup(
  10. name = SRC_REPO,
  11. version= __version__,
  12. author = AUTHOR_USER_NAME,
  13. author_email= AUTOR_EMAIL,
  14. description= "A small template to be used for deepmachine learning models",
  15. long_description=long_description,
  16. long_description_content = "text/markdown",
  17. url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
  18. project_urls={
  19. "Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues"},
  20. package_dir= {"":"src"},
  21. packages = setuptools.find_packages(where="src"),
  22. )
Tip!

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

Comments

Loading...