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 533 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
  1. from setuptools import setup, find_packages
  2. hypen='-e .'
  3. # Read the requirements from the 'requirements.txt' file
  4. with open('requirements.txt') as f:
  5. x = f.read().strip().replace('-e .', '').split('\n')
  6. setup(
  7. name='endtoend',
  8. version='1.0.0',
  9. description='end to end ml project',
  10. author='Parveen Sharma',
  11. author_email='parveen11030@email.com',
  12. url='https://github.com/parveen4646/',
  13. packages=find_packages(),
  14. install_requires=x # Use the list of requirements from requirements.txt
  15. )
Tip!

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

Comments

Loading...