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 554 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
  1. from setuptools import setup, find_packages
  2. with open("README.md", "r") as readme:
  3. long_description = readme.read()
  4. with open('requirements.txt') as f:
  5. requirements = f.read().splitlines()
  6. setup(
  7. name="production_model",
  8. version="0.0.1",
  9. author="Clearbox AI",
  10. author_email="",
  11. description="",
  12. long_description=long_description,
  13. long_description_content_type="text/markdown",
  14. url="https://github.com/Clearbox-AI/Corso_MLOps",
  15. install_requires=requirements,
  16. packages='',
  17. python_requires='>=3.6.2',
  18. )
Tip!

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

Comments

Loading...