]> git.phdru.name Git - m_lib.git/blobdiff - setup.py
Do not install tests but include them in source distribution
[m_lib.git] / setup.py
index 5d22450ac61fd450f5bc2fa1a7499e6cfaf73616..305bfce77eadfff11c85b6d8c111bf9a8fb20c8d 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from distutils.core import setup
 
 setup(name = "m_lib",
-    version = "2.0.1",
+    version = "2.1.0",
     description = "Broytman Library for Python",
     long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design",
     author = "Oleg Broytman",
@@ -11,14 +11,9 @@ setup(name = "m_lib",
     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.hash", "m_lib.hash.test", "m_lib.lazy",
+    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",
-        "m_lib.pbar", "m_lib.pbar.test", "m_lib.rus",
+        "m_lib.pbar", "m_lib.rus",
     ],
-    package_data = {'m_lib.flad': [
-        "test/comment.txt",
-        "test/test.cfg",
-        "test/test.txt",
-    ]},
 )