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 752 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
  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-NLP-StackOverflow"
  6. AUTHOR_USER_NAME = "Hamed Mehrabi"
  7. SRC_REPO = "src"
  8. LIST_OF_REQUIREMENTS = []
  9. setup(
  10. name=SRC_REPO,
  11. version="0.0.1",
  12. author=AUTHOR_USER_NAME,
  13. description="A small Project for DVC NLP-Stack Overflow",
  14. long_description=long_description,
  15. long_description_content_type="text/markdown",
  16. url=f"https://github.com/hamehrabi/Project-DVC-NLP-StackOverflow",
  17. author_email="mehrabi.hamed@outlook.com",
  18. packages=[SRC_REPO],
  19. license="MIT",
  20. python_requires=">=3.8",
  21. install_requires=LIST_OF_REQUIREMENTS
  22. )
Tip!

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

Comments

Loading...