-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
setup.py
49 lines (45 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
def read_readme() -> str:
with open('README.md', 'r', encoding='utf-8') as f:
return f.read()
setup(
name='huawei-lte-api',
version='1.10.0',
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'huawei_lte_api': ['py.typed']},
install_requires=[
'requests',
'xmltodict',
'pycryptodomex'
],
tests_require=[
'tox'
],
url='https://github.com/Salamek/huawei-lte-api',
license='LGPL-3.0 ',
author='Adam Schubert',
author_email='[email protected]',
description='API For huawei LAN/WAN LTE Modems',
long_description=read_readme(),
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.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development',
],
python_requires='>=3.7',
project_urls={
'Release notes': 'https://github.com/Salamek/huawei-lte-api/releases',
},
)