Skip to content

Commit 6ae3ab8

Browse files
committed
Fixed Python version in setup.
1 parent 1f0cddd commit 6ae3ab8

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
"""The setup script."""
55

6+
PACKAGE = 'proxy_db'
7+
68
from setuptools import setup, find_packages
79

810
with open('README.rst') as readme_file:
@@ -26,9 +28,12 @@
2628
# TODO: put package test requirements here
2729
]
2830

31+
package_version = __import__(PACKAGE).__version__
32+
33+
2934
setup(
3035
name='proxy-db',
31-
version='0.1.0',
36+
version=package_version,
3237
description="Manage free and private proxies on local db for Python Projects.",
3338
long_description=readme + '\n\n' + history,
3439
author="Nekmo Com",
@@ -51,12 +56,12 @@
5156
'License :: OSI Approved :: Apache Software License',
5257
'Natural Language :: English',
5358
"Programming Language :: Python :: 2",
54-
'Programming Language :: Python :: 2.6',
5559
'Programming Language :: Python :: 2.7',
5660
'Programming Language :: Python :: 3',
57-
'Programming Language :: Python :: 3.3',
5861
'Programming Language :: Python :: 3.4',
5962
'Programming Language :: Python :: 3.5',
63+
'Programming Language :: Python :: 3.6',
64+
'Programming Language :: Python :: 3.7',
6065
],
6166
test_suite='tests',
6267
tests_require=test_requirements,

0 commit comments

Comments
 (0)