We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c562c0c commit 0c16203Copy full SHA for 0c16203
.travis.yml
@@ -0,0 +1,16 @@
1
+language: python
2
+# sudo false implies containerized builds
3
+#sudo: false
4
+python:
5
+ - "3.7"
6
+before_install:
7
+ - pip install pytest pytest-cov
8
+ - pip install coveralls
9
+install:
10
+ - pip install -r requirements.txt
11
+ - pip install -r requirements-dev.txt
12
+# command to run tests
13
+script:
14
+ - py.test
15
+after_success:
16
+ - coveralls
setup.py
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
-VERSION = "0.1"
+VERSION = "0.2"
REQUIRES = ["requests"]
0 commit comments