-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (37 loc) · 1.5 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import setuptools
setuptools.setup(
name='exceptionx',
version='4.1.9',
author='Unnamed great master',
author_email='<[email protected]>',
license='MIT',
url='http://gqylpy.com',
project_urls={'Source': 'https://github.com/gqylpy/exceptionx'},
description='''
The `exceptionx` is a flexible and convenient Python exception handling
library that allows you to dynamically create exception classes and
provides various exception handling mechanisms.
'''.strip().replace('\n ', ''),
long_description=open('README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
packages=['exceptionx'],
python_requires='>=3.8',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Software Development :: Widget Sets',
'Topic :: Artistic Software',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
]
)