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 786 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. from encodings import utf_8
  2. import setuptools
  3. with open("README.md","r",encoding="utf_8") as f:
  4. LONG_DESCRIPTION=f.read()
  5. __VERSION__="0.0.0"
  6. REPO_NAME="Deep_Classifier"
  7. AUTHOR_USER_NAME="arun73822"
  8. SRC_REPO="deep_classifier"
  9. AUTHOR_EMAIL="arun73822@gmail.com"
  10. setuptools.setup(
  11. name=SRC_REPO,
  12. version=__VERSION__,
  13. description="A Small Python Package for CNN application",
  14. long_description=LONG_DESCRIPTION,
  15. lonng_description_content="text/markdown",
  16. author=AUTHOR_USER_NAME,
  17. author_email=AUTHOR_EMAIL,
  18. url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
  19. project_urls={
  20. "Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues"},
  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...