X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=b33a49bc3d7af8ea41f296c4238e9a22bd6b8a21;hb=a73caae577de282ae9e754eb6a9ba13cb8725980;hp=bd1751882f3d39932757d16db87bcf071ced7b80;hpb=60fa75981482928f6978f556f1e1ef1a86d6115c;p=m_lib.git diff --git a/setup.py b/setup.py index bd17518..b33a49b 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,23 +16,24 @@ if is_setuptools: } setup(name = "m_lib", - version = "2.1.3", + version = "3.1.0", description = "Broytman Library for Python", - long_description = "Broytman Library for Python, Copyright (C) 1996-2016 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", keywords=[''], classifiers=[ - 'Development Status :: 6 - Mature', + '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 :: 2 :: Only', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', ], @@ -44,5 +43,6 @@ setup(name = "m_lib", "m_lib.net", "m_lib.net.ftp", "m_lib.net.www", "m_lib.pbar", "m_lib.rus", ], + namespace_packages = ["m_lib"], **kw )