-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.52 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.52 KB
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
39
40
41
42
43
44
import io
from setuptools import find_packages, setup
try:
long_description_kwd=dict(
long_description=io.open('README.md', 'rt', encoding='utf-8').read(),
long_description_content_type='text/markdown',
)
except OSError:
long_description_kwd=dict()
setup(
name='smpplib',
version='2.2.4',
url='https://github.com/python-smpplib/python-smpplib',
description='SMPP library for python',
packages=find_packages(),
install_requires=['six'],
extras_require=dict(
tests=('typing; python_version < "3.5"', 'pytest', 'mock'),
),
zip_safe=True,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python',
'Topic :: Communications :: Telephony',
'Topic :: Communications',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
),
**long_description_kwd
)