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 744 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='dl_cnn_Classifier'
  6. AUTHOR_NAME='praveenmurali986'
  7. SRC_REPO='deepClassifier'
  8. AUTHOR_EMAIL='menvar007@gmail.com'
  9. setuptools.setup(
  10. name= SRC_REPO,
  11. version= __version__,
  12. author= AUTHOR_NAME,
  13. author_email= AUTHOR_EMAIL,
  14. description= 'A small python package',
  15. long_description= long_description,
  16. long_description_content= 'text/markdown',
  17. url= f'https://github.com/{AUTHOR_NAME}/{REPO_NAME}',
  18. project_urls={
  19. 'Bug Tracker': f"https://github.com/{AUTHOR_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...