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 667 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
  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name="dagshub",
  6. version="0.0.1rc2",
  7. author="DAGsHub",
  8. author_email="contact@dagshub.com",
  9. description="DAGsHub client libraries",
  10. long_description=long_description,
  11. long_description_content_type="text/markdown",
  12. url="https://github.com/DAGsHub/client",
  13. packages=setuptools.find_packages(),
  14. install_requires=["PyYAML>=5"],
  15. classifiers=[
  16. "Programming Language :: Python :: 3",
  17. "License :: OSI Approved :: MIT License",
  18. "Operating System :: OS Independent",
  19. ],
  20. python_requires='>=3.6',
  21. )
Tip!

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

Comments

Loading...