]> git.phdru.name Git - m_lib.git/blob - setup.py
Build(setup.py): Fix trove classifiers
[m_lib.git] / setup.py
1 #! /usr/bin/env python
2
3 from setuptools import setup
4
5 setup(
6     name = "m_lib",
7     version = "3.1.0.post2",
8     description = "Broytman Library for Python",
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/',
17         'Git repo': 'https://git.phdru.name/m_lib.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", "m_lib.clock", "m_lib.flad",
42         "m_lib.hash", "m_lib.lazy",
43         "m_lib.net", "m_lib.net.ftp", "m_lib.net.www",
44         "m_lib.pbar", "m_lib.rus",
45     ],
46     namespace_packages = ["m_lib"],
47     python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
48     extras_require={
49         'Metakit': ['Mk4py'],
50         'ZODB': ['ZODB'],
51         'mx': ['mx.DateTime', 'mx.Misc'],
52     },
53 )