add instructions for using setup.py

This commit is contained in:
Waylon Walker 2021-06-25 07:51:35 -05:00
parent 65241d7751
commit f7eb84c03b

View file

@ -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 setuptools import find_packages, setup