X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=c4d2bfc41d95b9e13230247ab92712d6a0def509;hb=242ec6b810fd14b39fffa25fba01724648ed0f7a;hp=2797d972e7092d1e19dd8f61ca4649f45b3044b4;hpb=332ff5ce8b74b5e556cc78e194c8a00b26697806;p=ppu.git diff --git a/setup.py b/setup.py index 2797d97..c4d2bfc 100755 --- a/setup.py +++ b/setup.py @@ -15,11 +15,10 @@ if is_setuptools: kw['python_requires'] = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*' versionpath = join(abspath(dirname(__file__)), "ppu", "__version__.py") -load_source("ppu_version", versionpath) -from ppu_version import __version__ # noqa: ignore flake8 E402 +ppu_version = load_source("ppu_version", versionpath) setup(name='ppu', - version=__version__, + version=ppu_version.__version__, description='Broytman Portable Python Utilities', long_description=open('README.rst', 'rU').read(), author='Oleg Broytman', @@ -28,9 +27,8 @@ setup(name='ppu', license='GPL', platforms='Any', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Environment :: Console', - 'Environment :: Web Environment', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Operating System :: OS Independent',