]> git.phdru.name Git - m_lib.git/blob - setup.py
988e15b18cdab169451d6b28e2cb853d1fe5c1a9
[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.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         'Programming Language :: Python :: 3.7',
33         'Programming Language :: Python :: 3.8',
34         'Programming Language :: Python :: 3.9',
35         'Programming Language :: Python :: 3.10',
36         'Programming Language :: Python :: 3.11',
37         'Programming Language :: Python :: 3.12',
38         'Topic :: Software Development :: Libraries',
39         'Topic :: Software Development :: Libraries :: Python Modules',
40     ],
41     platforms = "Any",
42     packages = ["m_lib", "m_lib.clock", "m_lib.flad",
43         "m_lib.hash", "m_lib.lazy",
44         "m_lib.net", "m_lib.net.ftp", "m_lib.net.www",
45         "m_lib.pbar", "m_lib.rus",
46     ],
47     namespace_packages = ["m_lib"],
48     python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
49     extras_require={
50         'Metakit': ['Mk4py'],
51         'ZODB': ['ZODB'],
52         'mx': ['mx.DateTime', 'mx.Misc'],
53     },
54 )