Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 490 Bytes

Development.md

File metadata and controls

28 lines (19 loc) · 490 Bytes

Building & Uploading to PyPI

Use setuptools to build your package:

python setup.py sdist bdist_wheel

Install twine for uploading:

pip install twine

Upload to PyPI (you'll need to register with PyPI first):

twine upload dist/*

Developing the Command Line Interface:

Install your package in editable mode for local testing:

pip install -e .

Then you can run keprompt directly from the command line to test its functionality.