]> git.phdru.name Git - m_lib.git/commitdiff
Use setuptools
authorOleg Broytman <phd@phdru.name>
Fri, 20 Dec 2013 17:27:20 +0000 (21:27 +0400)
committerOleg Broytman <phd@phdru.name>
Fri, 20 Dec 2013 17:27:20 +0000 (21:27 +0400)
INSTALL.txt
setup.py

index 5d05b6482cbab8a32222d9e168f29fbedf968235..d04b87fd89421f1a0e2861538570d1d467ab5f98 100644 (file)
@@ -1,5 +1,8 @@
 m_lib requires Python2; preferred versions are 2.6 or 2.7.
 
+Installation script setup.py requires setuptools. If you don't have it
+installed setup.py will try to download and install it.
+
 To install the library from sources system-wide run run the following
 command:
 
index 305bfce77eadfff11c85b6d8c111bf9a8fb20c8d..ec46baa8e78d9269409ae932f4d5172c6639f452 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,21 @@
 #! /usr/bin/env python
 
-from distutils.core import setup
+try:
+    from ez_setup import use_setuptools
+    use_setuptools()
+    from setuptools import setup
+    is_setuptools = True
+except ImportError:
+    from distutils.core import setup
+    is_setuptools = False
+
+kw = {}
+if is_setuptools:
+    kw['extras_require'] = {
+        'Mk4py': ['Mk4py'],
+        'ZODB': ['ZODB'],
+        'mx': ['mx.DateTime', 'mx.Misc'],
+        }
 
 setup(name = "m_lib",
     version = "2.1.0",
@@ -16,4 +31,5 @@ setup(name = "m_lib",
         "m_lib.net", "m_lib.net.ftp", "m_lib.net.www",
         "m_lib.pbar", "m_lib.rus",
     ],
+    **kw
 )