Skip to content

Commit

Permalink
Fixed Python version in setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Oct 20, 2018
1 parent 1f0cddd commit 6ae3ab8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

"""The setup script."""

PACKAGE = 'proxy_db'

from setuptools import setup, find_packages

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

package_version = __import__(PACKAGE).__version__


setup(
name='proxy-db',
version='0.1.0',
version=package_version,
description="Manage free and private proxies on local db for Python Projects.",
long_description=readme + '\n\n' + history,
author="Nekmo Com",
Expand All @@ -51,12 +56,12 @@
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
"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',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
tests_require=test_requirements,
Expand Down

0 comments on commit 6ae3ab8

Please sign in to comment.