]> git.phdru.name Git - m_lib.git/blobdiff - setup.py
Build(setup.py): Use python_requires keyword
[m_lib.git] / setup.py
index 698ded15c9629fd7f2549df7d4f4d64de9a0e8a2..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',
@@ -39,7 +40,7 @@ setup(name = "m_lib",
         '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",