diff --git a/Makefile b/Makefile index 806fa84a..344b987e 100644 --- a/Makefile +++ b/Makefile @@ -26,10 +26,19 @@ doc-references: -make -C docs api-doc tests: - pytest + pytest coverage: coverage run --source=./pandagg -m pytest coverage report -check: black doc-references +check: doc-references black lint + +create_dist: check + python setup.py sdist bdist_wheel + +test_dist: create_dist + twine upload -r testpypi dist/* + +upload_dist: + twine upload dist/* diff --git a/setup.py b/setup.py index f0f9f882..5cc40cb4 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = "0.2.0" +__version__ = "0.2.1" import os @@ -23,6 +23,8 @@ "pytest-cov", "mock", "pandas", + "Sphinx", + "twine", ] setup(