-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.32 KB
/
pyproject.toml
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
[tool.poetry]
name = "hurocon"
version = "0.6.0"
description = "Command line interface tool for interacting with Huawei LTE routers"
authors = ["maximilionus <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/maximilionus/hurocon.git"
documentation = "https://github.com/maximilionus/hurocon/blob/master/README.md"
keywords = ['cli', 'huawei', 'router', 'control']
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"License :: OSI Approved :: MIT License"
]
[tool.poetry.scripts]
hurocon = "hurocon:__main__"
[tool.poetry.dependencies]
python = "^3.7"
serialix = "^2.4.1"
huawei-lte-api = "^1.6.0"
click = "^8.1.2"
click-didyoumean = "^0.3.0"
jsonschema = "^4.7.2"
pwinput = "<=1.0.2"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"