X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=41fec96013f34c96e4a2583b2859069332096b12;hb=d87383fcd7bf8ec89d701dbe28bef2c261b53a9f;hp=857eceddd2a828ae5baac8326903b78bed640ba5;hpb=d7c459a9f979c4978cf07ff11056512a852fd61d;p=m_lib.git diff --git a/setup.py b/setup.py index 857eced..41fec96 100755 --- a/setup.py +++ b/setup.py @@ -3,14 +3,22 @@ from distutils.core import setup setup(name = "m_lib", - version = "1.4", - description = "Broytman Library for Python", - long_description = "Broytman Library for Python, Copyright (C) 1996-2012 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.hash", "m_lib.hash.test", "m_lib.lazy", + "m_lib.net", "m_lib.net.ftp", "m_lib.net.www", + "m_lib.pbar", "m_lib.pbar.test", "m_lib.rus", + ], + package_data = {'m_lib.flad': [ + "test/comment.txt", + "test/test.cfg", + "test/test.txt", + ]}, )