File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ language: python
3
3
python :
4
4
- " 2.7"
5
5
- " 3.4"
6
+ - " 3.5"
6
7
# command to install dependencies
7
8
install :
8
9
- " pip install -r requirements.txt"
Original file line number Diff line number Diff line change 51
51
include_package_data = True ,
52
52
long_description = """\
53
53
Python client for kubernetes http://kubernetes.io/
54
- """
54
+ """ ,
55
+ classifiers = [
56
+ "Development Status :: 4 - Alpha" ,
57
+ "Environment :: Kubernetes" ,
58
+ "Topic :: Utilities" ,
59
+ "Intended Audience :: Developers" ,
60
+ "Intended Audience :: Information Technology" ,
61
+ "License :: OSI Approved :: Apache Software License" ,
62
+ "Operating System :: OS Independent" ,
63
+ "Programming Language :: Python" ,
64
+ "Programming Language :: Python :: 2" ,
65
+ "Programming Language :: Python :: 2.7" ,
66
+ "Programming Language :: Python :: 3" ,
67
+ "Programming Language :: Python :: 3.4" ,
68
+ "Programming Language :: Python :: 3.5" ,
69
+ ],
55
70
)
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = py27, py34
2
+ envlist = py27, py34, py35
3
3
4
4
[testenv]
5
5
deps =-r{toxinidir}/requirements.txt
6
6
-r{toxinidir}/test-requirements.txt
7
7
8
8
commands =
9
9
nosetests \
10
- []
10
+ []
You can’t perform that action at this time.
0 commit comments