]> git.phdru.name Git - m_lib.git/blob - setup.py
Do not install tests but include them in source distribution
[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.1.0",
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",
15         "m_lib.hash", "m_lib.lazy",
16         "m_lib.net", "m_lib.net.ftp", "m_lib.net.www",
17         "m_lib.pbar", "m_lib.rus",
18     ],
19 )