FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-smpplib/setup.py at master · python-smpplib/python-smpplib · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-smpplib
/
python-smpplib
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
144
Star
190
Code
Issues
21
Pull requests
15
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
python-smpplib
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
44 lines (41 loc) · 1.52 KB
Breadcrumbs
python-smpplib
/
setup.py
Copy path
File metadata and controls
44 lines (41 loc) · 1.52 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
)
Back
|
FazBrowse Home
|
New Git URL