We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9db0862 commit 48d2e5fCopy full SHA for 48d2e5f
2 files changed
.travis.yml
@@ -0,0 +1,21 @@
1
+sudo: false
2
+
3
+language: "python"
4
5
+python:
6
+ - "2.7"
7
+ - "3.4"
8
+ - "3.5"
9
+ - "3.6"
10
+ - "3.7-dev"
11
12
+install:
13
+ - "pip install ."
14
+ - "pip install -U flake8"
15
16
+script:
17
+ - "python setup.py test"
18
+ - "flake8 ."
19
20
+notifications:
21
+ - email: false
setup.py
@@ -26,8 +26,8 @@
26
ext_modules=ext_modules,
27
install_requires=['six>=1.0.0,<2.0.0'],
28
test_suite='tests',
29
- tests_require=['flake8']
+ tests_require=['flake8'],
30
entry_points={
31
'console_scripts': ['python-pure-cdbmake=cdblib.cdbmake:main'],
32
- }
+ },
33
)
0 commit comments