summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorThomas Grainger <tom.grainger@procensus.com>2016-05-19 17:46:34 +0100
committerThomas Grainger <tom.grainger@procensus.com>2016-05-19 17:59:34 +0100
commite0b9cb2a8c9c69822526908aa2841adc7f1322bb (patch)
tree3f093a9af259c02e748cba31cd8416ed6fface8c /setup.py
parent26f2b696ab61a6dd41a19c9730f85a6b572089b7 (diff)
downloaddocker-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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index fac5129..8542711 100644
--- a/setup.py
+++ b/setup.py
@@ -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',
],