Skip to content

Commit 674be72

Browse files
committed
release: Refactor using twine
1 parent 2cd014c commit 674be72

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
rm -f dist/* # Remove eventual previous versions
3+
python setup.py sdist bdist_wheel # Create Source Distribution and Universal Wheel
4+
twine upload dist/* # Upload to PyPI
5+

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
django>=1.7
22
algoliasearch
3-
tox
4-
wheel
3+
# dev dependencies
54
pypandoc
5+
wheel
6+
tox
7+
twine

0 commit comments

Comments
 (0)