-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.19 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
45
46
47
48
49
50
[tool.poetry]
name = "NetSM"
version = "0.1.5"
description = "Cross-platform lib for network speed monitoring in Python"
license = "MIT"
authors = ["XavierJiezou <[email protected]>"]
maintainers = []
readme = "README.md"
homepage = "https://github.com/XavierJiezou/NetSM"
repository = "https://github.com/XavierJiezou/NetSM"
documentation = "https://github.com/XavierJiezou/NetSM"
keywords = ["network speed", "monitor"]
classifiers = ["Topic :: System :: Networking :: Monitoring"]
packages = [{ include = "netsm" }]
include = ["CHANGELOG.md"]
exclude = []
[tool.poetry.build]
generate-setup-file = false
[tool.poetry.dependencies]
python = "^3.7"
fire = "^0.4.0"
psutil = "^5.9.0"
rich = "^12.3.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
autopep8 = "^1.6.0"
toml = "^0.10.2"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "tsinghua-pypi"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests", "integration"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test"
[tool.poetry.scripts]
netsm = "netsm.cli:main"