From f7eb84c03b2d827a7d29db56412bc1b6b0c2a90d Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Fri, 25 Jun 2021 07:51:35 -0500 Subject: [PATCH] add instructions for using setup.py --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/setup.py b/setup.py index 2f7162b..2ed52ba 100644 --- a/setup.py +++ b/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 setuptools import find_packages, setup