-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.77 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.77 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
45
46
47
from setuptools import setup
import io
with io.open('README.md', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name='GSMTC35',
version='2.1.1',
description='GSM TC35/MC35 controller (Send/Receive SMS/MMS/Call and a lot more!)',
long_description_content_type='text/markdown',
long_description=readme,
url='https://github.com/QuentinCG/GSM-TC35-Python-Library',
author='Quentin Comte-Gaz',
author_email='quentin@comte-gaz.com',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Communications :: Telephony',
'Topic :: Terminals :: Serial',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='gsm pdu tc35 mc35 at sms mms call phone pin puk phonebook imei imsi ucs2 7bit forward unlock lock',
packages=["GSMTC35"],
platforms='any',
install_requires=["pyserial"],
tests_require=["mock"],
test_suite="tests",
extras_require={
'restapi': ["flask", "flask_restful", "flask-httpauth", "pyopenssl"]
}
)