File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ VERSION := $(shell python setup.py --version)
2+
13setup :
24 test -e env || virtualenv env
35 ./env/bin/pip install -r requirements.txt --upgrade
@@ -14,8 +16,12 @@ ci-test:
1416 py.test tests
1517
1618deploy : setup
19+ git tag $(VERSION )
20+ git push --tags
1721 rm dist/*
18- python setup.py sdist
19- twine upload dist/*
22+ ./env/bin/python setup.py sdist
23+ gpg --detach-sign -a dist/dnsimple-$(VERSION ) .tar.gz
24+ ./env/bin/pip install twine --upgrade
25+ ./env/bin/twine upload dist/*
2026
2127.PHONY : test
Original file line number Diff line number Diff line change 1313 version = dnsimple .__version__ ,
1414 description = u' ' .join (dnsimple .__doc__ .splitlines ()).strip (),
1515 long_description = readme ,
16+ maintainer = 'David Aronsohn' ,
17+ maintainer_email = '[email protected] ' ,
1618 packages = find_packages (),
1719 include_package_data = True ,
1820 zip_safe = False ,
You can’t perform that action at this time.
0 commit comments