]> git.phdru.name Git - m_lib.full.git/blob - setup.py
Build(setup.py): Use setuptools instead of distutils
[m_lib.full.git] / setup.py
1 #! /usr/bin/env python
2
3 from setuptools import setup
4
5 setup(name = "m_lib.full",
6     version = "1.0.1",
7     description = "m_lib full meta-package",
8     long_description = "Broytman Library for Python, Copyright (C) 1996-2018 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     classifiers=[
14         'Development Status :: 5 - Production/Stable',
15         'Intended Audience :: Developers',
16         'License :: OSI Approved :: GNU General Public License (GPL)',
17         'Operating System :: OS Independent',
18         'Programming Language :: Python :: 2',
19         'Programming Language :: Python :: 2.6',
20         'Programming Language :: Python :: 2.7',
21         'Programming Language :: Python :: 3',
22         'Programming Language :: Python :: 3.4',
23         'Programming Language :: Python :: 3.5',
24         'Programming Language :: Python :: 3.6',
25         'Topic :: Software Development :: Libraries',
26         'Topic :: Software Development :: Libraries :: Python Modules',
27     ],
28     platforms = "Any",
29     packages = ["m_lib"],
30     namespace_packages = ["m_lib"],
31     python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
32     install_requires=['m_lib>=3.1', 'm_lib.defenc>=1.0'],
33 )