Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 1.02 KB

HACKME.md

File metadata and controls

51 lines (36 loc) · 1.02 KB

Contributing

To do

  • Finish refactoring tests
  • Test Matplotlib
  • Make a command that does everything for uploading and pushing to git

Development setup

Please install Anaconda and create a virtual environment, this way it makes it easier to reproduce errors and whatnot.

>>> conda create -n prince-venv python=3.6 anaconda
>>> source activate prince-venv

Then install the necessary dependencies.

>>> pip install -r requirements.dev.txt

Upload to PyPI

Reference

Create ~/.pypirc with the following content:

[distutils]
index-servers =
  pypi
  pypitest

[pypi]
repository=https://pypi.python.org/pypi
username=your_username
password=your_password

[pypitest]
repository=https://testpypi.python.org/pypi
username=your_username
password=your_password
python setup.py sdist upload -r pypitest
python setup.py sdist upload -r pypi