forked from Salamek/huawei-lte-api
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.49 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.49 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
48
49
50
51
52
from setuptools import setup
setup(
name='huawei-lte-api',
version='1.4.1',
packages=[
'huawei_lte_api',
'huawei_lte_api.api',
'huawei_lte_api.enums',
'huawei_lte_api.config'
],
install_requires=[
'requests',
'dicttoxml',
'xmltodict',
],
url='https://github.com/Salamek/huawei-lte-api',
license='LGPL-3.0 ',
author='Adam Schubert',
author_email='adam.schubert@sg1-game.net',
description='API For huawei LAN/WAN LTE Modems',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Topic :: Software Development',
],
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest',
'pylint',
'tox',
'pytest-cov'
]
)