diff --git a/Makefile b/Makefile index 16df1891..437636ba 100644 --- a/Makefile +++ b/Makefile @@ -46,5 +46,13 @@ test-site-integ: testcov: pytest tests/units tests/server tests/api tests/site_integration --cov=balsam --cov-config setup.cfg --cov-report=html +.PHONY: distribute +distribute: + cp docs/README.md README.md + python -m build + python -m twine check dist/* + python -m twine upload dist/* + + .PHONY: all -all: generate-api validate-defaults format lint mypy testcov \ No newline at end of file +all: generate-api validate-defaults format lint mypy testcov diff --git a/balsam/__init__.py b/balsam/__init__.py index bf4f88a3..31e2a6d6 100644 --- a/balsam/__init__.py +++ b/balsam/__init__.py @@ -1,4 +1,4 @@ from balsam.util import config_root_logger -__version__ = "0.7.0.a13" +__version__ = "0.7.0.a14" config_root_logger() diff --git a/setup.cfg b/setup.cfg index f341d5ce..5807e8bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,7 +2,7 @@ name = balsam version = attr: balsam.__version__ description = HPC Workflows & Edge Service -long_description = file: docs/README.md +long_description = file: README.md long_description_content_type=text/markdown url = https://balsam.readthedocs.io