add instructions for using setup.py
This commit is contained in:
parent
65241d7751
commit
f7eb84c03b
1 changed files with 15 additions and 0 deletions
15
setup.py
15
setup.py
|
|
@ -1,3 +1,18 @@
|
||||||
|
"""
|
||||||
|
pypi-list uses setup tools for packaging.
|
||||||
|
|
||||||
|
To Build pypi-list as a Python package
|
||||||
|
|
||||||
|
$ python setup.py sdist bdist_wheel
|
||||||
|
|
||||||
|
Regular install
|
||||||
|
|
||||||
|
$ pip install -e .
|
||||||
|
|
||||||
|
To setup local Development
|
||||||
|
|
||||||
|
$ pip install -e ".[dev]"
|
||||||
|
"""
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue