We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d37f63 commit 649c626Copy full SHA for 649c626
.travis.yml
@@ -0,0 +1,10 @@
1
+dist: xenial # required for Python >= 3.7
2
+language: python
3
+python:
4
+ - "3.7"
5
+
6
+install:
7
+ - pip install -r requirements.txt
8
+ - pip install twine
9
10
+script: build.sh
build.sh
@@ -0,0 +1,3 @@
+rm -rf dist
+python setup.py sdist
+twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD
0 commit comments