- Finish refactoring tests
- Test Matplotlib
- Make a command that does everything for uploading and pushing to git
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
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