=
commited on
Commit
·
200f08a
1
Parent(s):
f8a770b
modified setup
Browse files
setup.py
CHANGED
@@ -29,7 +29,6 @@ setup(
|
|
29 |
'Programming Language :: Python :: 3.5',
|
30 |
'Programming Language :: Python :: 3.6',
|
31 |
'Programming Language :: Python :: 3.7',
|
32 |
-
'Programming Language :: Python :: 3.8',
|
33 |
],
|
34 |
description="A flexible python tool to translate between different languages in a simple way.",
|
35 |
entry_points={
|
|
|
29 |
'Programming Language :: Python :: 3.5',
|
30 |
'Programming Language :: Python :: 3.6',
|
31 |
'Programming Language :: Python :: 3.7',
|
|
|
32 |
],
|
33 |
description="A flexible python tool to translate between different languages in a simple way.",
|
34 |
entry_points={
|
tox.ini
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
[tox]
|
2 |
-
envlist = py35, py36, py37,
|
3 |
|
4 |
[travis]
|
5 |
python =
|
6 |
-
3.8: py38
|
7 |
3.7: py37
|
8 |
3.6: py36
|
9 |
3.5: py35
|
|
|
1 |
[tox]
|
2 |
+
envlist = py35, py36, py37, flake8
|
3 |
|
4 |
[travis]
|
5 |
python =
|
|
|
6 |
3.7: py37
|
7 |
3.6: py36
|
8 |
3.5: py35
|