Skip to content

Commit 649c626

Browse files
Added .travis.yml and build script
1 parent 5d37f63 commit 649c626

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
rm -rf dist
2+
python setup.py sdist
3+
twine upload dist/* -u $PYPI_USERNAME -p $PYPI_PASSWORD

0 commit comments

Comments
 (0)