]> git.phdru.name Git - m_lib.full.git/blob - setup.py
Style(setup.py): Reindent parameters
[m_lib.full.git] / setup.py
1 #! /usr/bin/env python
2
3 from setuptools import setup
4
5 setup(
6     name = "m_lib.full",
7     version = "1.0.1",
8     description = "m_lib full meta-package",
9     long_description = "Broytman Library for Python, Copyright (C) 1996-2018 PhiloSoft Design",
10     long_description_content_type="text/plain",
11     author = "Oleg Broytman",
12     author_email = "phd@phdru.name",
13     url = "http://phdru.name/Software/Python/#m_lib",
14     project_urls={
15         'Homepage': 'http://phdru.name/Software/Python/#m_lib',
16         'Download': 'https://pypi.python.org/pypi/m_lib.full',
17         'Git repo': 'http://git.phdru.name/m_lib.full.git/',
18     },
19     license = "GPL",
20     classifiers=[
21         'Development Status :: 5 - Production/Stable',
22         'Intended Audience :: Developers',
23         'License :: OSI Approved :: GNU General Public License (GPL)',
24         'Operating System :: OS Independent',
25         'Programming Language :: Python :: 2',
26         'Programming Language :: Python :: 2.6',
27         'Programming Language :: Python :: 2.7',
28         'Programming Language :: Python :: 3',
29         'Programming Language :: Python :: 3.4',
30         'Programming Language :: Python :: 3.5',
31         'Programming Language :: Python :: 3.6',
32         'Topic :: Software Development :: Libraries',
33         'Topic :: Software Development :: Libraries :: Python Modules',
34     ],
35     platforms = "Any",
36     packages = ["m_lib"],
37     namespace_packages = ["m_lib"],
38     python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
39     install_requires=['m_lib>=3.1', 'm_lib.defenc>=1.0'],
40 )