Matplotlib, but for cats.
- Free software: MIT license
- Documentation: https://catplotlib.readthedocs.io. Just kidding. There are no docs.
Just one:
import catplotlib.catplot as clt clt.plot()
Actually, there's a second one:
import catplotlib.catplot as clt clt.plot(says='matplotlib + cats = catplotlib')
- Bump the version in
catplotlib/__init__.py
andsetup.py
- Update the changelog, link the versions.
- Commit and tag with version number
- Build a source dist with
python setup.py clean && rm dist/* && python setup.py sdist
- Test upload to PyPI test with
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
- Create a temporary environment
mktmpenv
and test install withpip install --index-url https://test.pypi.org/simple/ catplotlib
- If everything looks good, upload for real with
twine upload dist/*