Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 498 Bytes

dev-readme.md

File metadata and controls

29 lines (21 loc) · 498 Bytes

Developer hints

Pre

python3 -m pip install --upgrade pip flake8 pylint

To set up virtual environment

PIPENV_VENV_IN_PROJECT=1 pipenv install --dev

To run it from there

pipenv run ./dymka -V

To publish the new version to pypi

python3 -m pip install --upgrade setuptools wheel twine
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*

Taken from https://packaging.python.org/tutorials/packaging-projects/.