]> git.phdru.name Git - m_lib.full.git/blob - setup.py
Build: Remove duplicate `requirements.txt`
[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.post2",
8     description = "m_lib full meta-package",
9     long_description = "Broytman Library for Python, Copyright (C) 1996-2023 PhiloSoft Design",
10     long_description_content_type="text/plain",
11     author = "Oleg Broytman",
12     author_email = "phd@phdru.name",
13     url = "https://phdru.name/Software/Python/#m_lib",
14     project_urls={
15         'Homepage': 'https://phdru.name/Software/Python/#m_lib',
16         'Download': 'https://pypi.org/project/m_lib.full/',
17         'Git repo': 'https://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.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         'Programming Language :: Python :: 3.7',
32         'Programming Language :: Python :: 3.8',
33         'Programming Language :: Python :: 3.9',
34         'Programming Language :: Python :: 3.10',
35         'Programming Language :: Python :: 3.11',
36         'Programming Language :: Python :: 3.12',
37         'Topic :: Software Development :: Libraries',
38         'Topic :: Software Development :: Libraries :: Python Modules',
39     ],
40     platforms = "Any",
41     packages = ["m_lib"],
42     namespace_packages = ["m_lib"],
43     python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
44     install_requires=['m_lib>=3.1.0.post1', 'm_lib.defenc>=1.1'],
45 )