]> git.phdru.name Git - m_lib.full.git/blob - setup.py
Build(setup.py): Add long_description_content_type
[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     long_description_content_type="text/plain",
10     author = "Oleg Broytman",
11     author_email = "phd@phdru.name",
12     url = "http://phdru.name/Software/Python/#m_lib",
13     project_urls={
14         'Homepage': 'http://phdru.name/Software/Python/#m_lib',
15         'Download': 'https://pypi.python.org/pypi/m_lib.full',
16         'Git repo': 'http://git.phdru.name/m_lib.full.git/',
17     },
18     license = "GPL",
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         'Programming Language :: Python :: 3.5',
30         'Programming Language :: Python :: 3.6',
31         'Topic :: Software Development :: Libraries',
32         'Topic :: Software Development :: Libraries :: Python Modules',
33     ],
34     platforms = "Any",
35     packages = ["m_lib"],
36     namespace_packages = ["m_lib"],
37     python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
38     install_requires=['m_lib>=3.1', 'm_lib.defenc>=1.0'],
39 )