]> git.phdru.name Git - m_lib.defenc.git/blob - setup.py
e15eacbc179c60356e470cc19dab8077e16977a8
[m_lib.defenc.git] / setup.py
1 #! /usr/bin/env python
2
3 try:
4     from setuptools import setup
5     is_setuptools = True
6 except ImportError:
7     from distutils.core import setup
8     is_setuptools = False
9
10 setup(name = "m_lib.defenc",
11     version = "1.0.0",
12     description = "Broytman Library for Python",
13     long_description = "Broytman Library for Python, Copyright (C) 1996-2017 PhiloSoft Design",
14     author = "Oleg Broytman",
15     author_email = "phd@phdru.name",
16     url = "http://phdru.name/Software/Python/#m_lib",
17     license = "GPL",
18     keywords=[''],
19     classifiers=[
20         'Development Status :: 5 - Production/Stable',
21         'Intended Audience :: Developers',
22         'License :: OSI Approved :: GNU General Public License (GPL)',
23         'Operating System :: OS Independent',
24         'Programming Language :: Python :: 2',
25         'Programming Language :: Python :: 2.6',
26         'Programming Language :: Python :: 2.7',
27         'Programming Language :: Python :: 3',
28         'Programming Language :: Python :: 3.4',
29         'Topic :: Software Development :: Libraries',
30         'Topic :: Software Development :: Libraries :: Python Modules',
31     ],
32     platforms = "All",
33     packages = ["m_lib"],
34     namespace_packages = ["m_lib"],
35 )