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 771 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
  1. from setuptools import setup, find_packages
  2. # run the file with "pip install -e." this create a folder "src.egg-info"
  3. '''setup.py is a python file, the presence of which is an indication that the module/package you are about to install has likely been packaged and distributed with Distutils, which is the standard for distributing Python Modules.
  4. This allows you to easily install Python packages. Often it's enough to write:
  5. $ pip install .
  6. pip will use setup.py to install your module. Avoid calling setup.py directly.
  7. https://stackoverflow.com/questions/1471994/what-is-setup-py
  8. '''
  9. setup(
  10. name="src",
  11. version="0.0.1", # just version
  12. description="its a wine Q package",
  13. author="Naveen Vinayak S",
  14. packages=find_packages(),
  15. license="MIT"
  16. )
Tip!

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

Comments

Loading...