X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=2b6b4c0337aa88db4a120b5bda5cf98577fa8b0f;hb=413c257c07051e4be5588021514dcf42ec0c56ed;hp=4b66dbf6f3cec86e5e07fe3d1be64b9850aedf51;hpb=ba44e699d5adf8e3460c477d4715c3a811b0a82c;p=m_lib.git diff --git a/setup.py b/setup.py index 4b66dbf..2b6b4c0 100755 --- a/setup.py +++ b/setup.py @@ -1,8 +1,6 @@ #! /usr/bin/env python try: - from ez_setup import use_setuptools - use_setuptools() from setuptools import setup is_setuptools = True except ImportError: @@ -18,18 +16,34 @@ if is_setuptools: } setup(name = "m_lib", - version = "2.1.1", + version = "3.1.0", description = "Broytman Library for Python", - long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design", + long_description = "Broytman Library for Python, Copyright (C) 1996-2017 PhiloSoft Design", author = "Oleg Broytman", author_email = "phd@phdru.name", url = "http://phdru.name/Software/Python/#m_lib", license = "GPL", - platforms = "All", + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License (GPL)', + 'Operating System :: OS Independent', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + ], + platforms = "Any", packages = ["m_lib", "m_lib.clock", "m_lib.flad", "m_lib.hash", "m_lib.lazy", "m_lib.net", "m_lib.net.ftp", "m_lib.net.www", "m_lib.pbar", "m_lib.rus", ], + namespace_packages = ["m_lib"], **kw )