]> git.phdru.name Git - m_lib.git/blobdiff - setup.py
Build(setup.py): Use python_requires keyword
[m_lib.git] / setup.py
index b33a49bc3d7af8ea41f296c4238e9a22bd6b8a21..99e74b997c12e689255de16534bc907f4b052502 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -15,6 +15,8 @@ if is_setuptools:
         'mx': ['mx.DateTime', 'mx.Misc'],
         }
 
+    kw['python_requires'] = '>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*'
+
 setup(name = "m_lib",
     version = "3.1.0",
     description = "Broytman Library for Python",
@@ -23,7 +25,6 @@ setup(name = "m_lib",
     author_email = "phd@phdru.name",
     url = "http://phdru.name/Software/Python/#m_lib",
     license = "GPL",
-    keywords=[''],
     classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Intended Audience :: Developers',
@@ -34,10 +35,12 @@ 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',
     ],
-    platforms = "All",
+    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",