File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 33
44"""The setup script."""
55
6+ PACKAGE = 'proxy_db'
7+
68from setuptools import setup , find_packages
79
810with open ('README.rst' ) as readme_file :
2628 # TODO: put package test requirements here
2729]
2830
31+ package_version = __import__ (PACKAGE ).__version__
32+
33+
2934setup (
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" ,
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 ,
You can’t perform that action at this time.
0 commit comments