pycoders-toolbox

A strong Toolbox for Python Coders


License
MIT
Install
pip install pycoders-toolbox==0.0.1

Documentation

PyCoders Toolbox

Python Command Line Toolbox for generate python project quickly.

Development locally

Create virtual environment

virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.in

Test it

python src/cli.py

Setup locally

pip install --editable ./src

Upload to PiPy

  1. First, setup
python -m keyring set https://upload.pypi.org/legacy/ <your_username>
  1. Create some distributions in the normal way:
python setup.py sdist bdist_wheel

Upload to TestPyPI by specifying the --repository flag:

twine upload --repository testpypi dist/*

Upload the latest version we just built

twine upload dist/pycoders-toolbox-x.x.x.tar.gz