]> git.phdru.name Git - m_lib.git/blobdiff - setup.py
Import m_lib/flad
[m_lib.git] / setup.py
index ac13e3b12b071a2499f9f19a8112ceca5ece7c84..670cbc9f28c49d2b535a39b7256c423261140141 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,14 +3,21 @@
 from distutils.core import setup
 
 setup(name = "m_lib",
-   version = "2.0",
-   description = "Broytman Library for Python",
-   long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design",
-   author = "Oleg Broytman",
-   author_email = "phd@phdru.name",
-   url = "http://phdru.name/Software/Python/#m_lib",
-   license = "GPL",
-   platforms = "All",
-   packages = ["m_lib", "m_lib.clock", "m_lib.lazy",
-      "m_lib.net", "m_lib.net.ftp", "m_lib.net.www", "m_lib.rus"]
+    version = "2.0",
+    description = "Broytman Library for Python",
+    long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design",
+    author = "Oleg Broytman",
+    author_email = "phd@phdru.name",
+    url = "http://phdru.name/Software/Python/#m_lib",
+    license = "GPL",
+    platforms = "All",
+    packages = ["m_lib", "m_lib.clock",
+        "m_lib.flad", "m_lib.flad.test", "m_lib.lazy",
+        "m_lib.net", "m_lib.net.ftp", "m_lib.net.www", "m_lib.rus",
+        ],
+    data_files = [("%s/m_lib/flad/test" % python_lib, [
+        "m_lib/flad/test/test.cfg",
+        "m_lib/flad/test/test.txt",
+        "m_lib/flad/test/comment.txt",
+    ])]
 )