We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c5ba38 commit ad1cb6eCopy full SHA for ad1cb6e
Makefile
@@ -9,6 +9,13 @@ install:
9
build:
10
@python setup.py sdist bdist_wheel
11
12
+.PHONY: clean
13
+clean:
14
+ @rm -rf build dist *.egg-info
15
+
16
+.PHONY: clean-build
17
+clean-build: clean build
18
19
.PHONY: upload-pypi-test
20
upload-pypi-test:
21
@twine upload --repository-url https://test.pypi.org/legacy/ dist/*
setup.py
@@ -1,7 +1,7 @@
1
import setuptools
2
3
NAME = "ga4gh-testbed-lib"
4
-VERSION = "0.1.0"
+VERSION = "0.1.1"
5
AUTHOR = "Jeremy Adams"
6
EMAIL = "jeremy.adams@ga4gh.org"
7
0 commit comments