diff options
author | Thomas Grainger <tom.grainger@procensus.com> | 2016-05-19 17:46:34 +0100 |
---|---|---|
committer | Thomas Grainger <tom.grainger@procensus.com> | 2016-05-19 17:59:34 +0100 |
commit | e0b9cb2a8c9c69822526908aa2841adc7f1322bb (patch) | |
tree | 3f093a9af259c02e748cba31cd8416ed6fface8c /setup.py | |
parent | 26f2b696ab61a6dd41a19c9730f85a6b572089b7 (diff) | |
download | docker-py-e0b9cb2a8c9c69822526908aa2841adc7f1322bb.tar.gz |
support Python 3.5
Signed-off-by: Thomas Grainger <tom.grainger@procensus.com>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -16,6 +16,7 @@ extras_require = { ':python_version < "3.3"': 'ipaddress >= 1.0.16', } +version = None exec(open('docker/version.py').read()) with open('./test-requirements.txt') as test_reqs_txt: @@ -42,10 +43,13 @@ setup( 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python', + 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Utilities', 'License :: OSI Approved :: Apache Software License', ], |