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
33python :
44 - " 2.7"
55 - " 3.4"
6+ - " 3.5"
67# command to install dependencies
78install :
89 - " pip install -r requirements.txt"
Original file line number Diff line number Diff line change 5151 include_package_data = True ,
5252 long_description = """\
5353 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+ ],
5570)
Original file line number Diff line number Diff line change 11[tox]
2- envlist = py27, py34
2+ envlist = py27, py34, py35
33
44[testenv]
55deps =-r{toxinidir}/requirements.txt
66 -r{toxinidir}/test-requirements.txt
77
88commands =
99 nosetests \
10- []
10+ []
You can’t perform that action at this time.
0 commit comments