forked from circstat/pycircstat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
26 lines (18 loc) · 871 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
all:
@echo 'MakeFile for pycircstat packaging '
@echo ' '
@echo 'make sdist Creates source distribution '
@echo 'make wheel Creates Wheel distribution '
@echo 'make pypi Package and upload to PyPI '
@echo 'make pypitest Package and upload to PyPI test server'
@echo 'make purge Remove all build related directories '
sdist:
python3 setup.py sdist
wheel:
python3 setup.py bdist_wheel
pypi:purge sdist wheel
twine upload dist/*
pypitest: purge sdist wheel
twine upload -r pypitest dist/*
purge:
rm -rf dist && rm -rf build && rm -rf pycircstat.egg-info