]> git.phdru.name Git - m_lib.full.git/blob - setup.py
1db8215f4742a536b604ae07546c69dec464d467
[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     project_urls={
13         'Homepage': 'http://phdru.name/Software/Python/#m_lib',
14         'Download': 'https://pypi.python.org/pypi/m_lib.full',
15         'Git repo': 'http://git.phdru.name/m_lib.full.git/',
16     },
17     license = "GPL",
18     classifiers=[
19         'Development Status :: 5 - Production/Stable',
20         'Intended Audience :: Developers',
21         'License :: OSI Approved :: GNU General Public License (GPL)',
22         'Operating System :: OS Independent',
23         'Programming Language :: Python :: 2',
24         'Programming Language :: Python :: 2.6',
25         'Programming Language :: Python :: 2.7',
26         'Programming Language :: Python :: 3',
27         'Programming Language :: Python :: 3.4',
28         'Programming Language :: Python :: 3.5',
29         'Programming Language :: Python :: 3.6',
30         'Topic :: Software Development :: Libraries',
31         'Topic :: Software Development :: Libraries :: Python Modules',
32     ],
33     platforms = "Any",
34     packages = ["m_lib"],
35     namespace_packages = ["m_lib"],
36     python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
37     install_requires=['m_lib>=3.1', 'm_lib.defenc>=1.0'],
38 )