]> git.phdru.name Git - m_lib.git/blob - setup.py
Rename mk-tag-alias -> mk-git-alias
[m_lib.git] / setup.py
1 #! /usr/bin/env python
2
3 try:
4     from ez_setup import use_setuptools
5     use_setuptools()
6     from setuptools import setup
7     is_setuptools = True
8 except ImportError:
9     from distutils.core import setup
10     is_setuptools = False
11
12 kw = {}
13 if is_setuptools:
14     kw['extras_require'] = {
15         'Metakit': ['Mk4py'],
16         'ZODB': ['ZODB'],
17         'mx': ['mx.DateTime', 'mx.Misc'],
18         }
19
20 setup(name = "m_lib",
21     version = "3.0.2",
22     description = "Broytman Library for Python",
23     long_description = "Broytman Library for Python, Copyright (C) 1996-2016 PhiloSoft Design",
24     author = "Oleg Broytman",
25     author_email = "phd@phdru.name",
26     url = "http://phdru.name/Software/Python/#m_lib",
27     license = "GPL",
28     keywords=[''],
29     classifiers=[
30         'Development Status :: 5 - Production/Stable',
31         'Intended Audience :: Developers',
32         'License :: OSI Approved :: GNU General Public License (GPL)',
33         'Operating System :: OS Independent',
34         'Programming Language :: Python :: 2',
35         'Programming Language :: Python :: 2.6',
36         'Programming Language :: Python :: 2.7',
37         'Programming Language :: Python :: 3',
38         'Programming Language :: Python :: 3.4',
39         'Topic :: Software Development :: Libraries',
40         'Topic :: Software Development :: Libraries :: Python Modules',
41     ],
42     platforms = "All",
43     packages = ["m_lib", "m_lib.clock", "m_lib.flad",
44         "m_lib.hash", "m_lib.lazy",
45         "m_lib.net", "m_lib.net.ftp", "m_lib.net.www",
46         "m_lib.pbar", "m_lib.rus",
47     ],
48     **kw
49 )