X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=698ded15c9629fd7f2549df7d4f4d64de9a0e8a2;hb=a0978d8b70fa941e004555a7002b21771bbf16d9;hp=08ad0983b893eb0ee6c46fb43df9936273446fe6;hpb=0f8ffa61bdc219b08f76b22cafcd9d87f8dc8db1;p=m_lib.git diff --git a/setup.py b/setup.py index 08ad098..698ded1 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,9 +16,9 @@ if is_setuptools: } setup(name = "m_lib", - version = "3.0.2", + 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", @@ -36,6 +34,8 @@ setup(name = "m_lib", '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', ], @@ -45,5 +45,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 )