]> git.phdru.name Git - m_lib.git/blob - setup.py
Version 2.0.1: add installation instruction in INSTALL.txt
[m_lib.git] / setup.py
1 #! /usr/bin/env python
2
3 from distutils.core import setup
4
5 setup(name = "m_lib",
6     version = "2.0.1",
7     description = "Broytman Library for Python",
8     long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design",
9     author = "Oleg Broytman",
10     author_email = "phd@phdru.name",
11     url = "http://phdru.name/Software/Python/#m_lib",
12     license = "GPL",
13     platforms = "All",
14     packages = ["m_lib", "m_lib.clock", "m_lib.flad", "m_lib.flad.test",
15         "m_lib.hash", "m_lib.hash.test", "m_lib.lazy",
16         "m_lib.net", "m_lib.net.ftp", "m_lib.net.www",
17         "m_lib.pbar", "m_lib.pbar.test", "m_lib.rus",
18     ],
19     package_data = {'m_lib.flad': [
20         "test/comment.txt",
21         "test/test.cfg",
22         "test/test.txt",
23     ]},
24 )