-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nethang"
version = "0.2.0"
description = "A web-based tool for simulating network quality"
readme = "README.md"
authors = [
{name = "Hang Yin", email = "stephen.yin.h@gmail.com"}
]
license = {text = "MIT"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"Flask>=2.0.0",
"flask-socketio>=5.0.0",
"python-dotenv>=0.10.0",
"Werkzeug>=3.0.0",
"pyyaml>=5.0.0",
"netifaces>=0.10.0",
"tomli>=2.0.0",
"requests>=2.0.0",
]
[project.scripts]
nethang = "run:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"mypy>=1.0.0",
"types-PyYAML>=6.0.0",
"black>=22.0.0",
"flake8>=4.0.0",
"isort>=5.0.0",
]
[project.urls]
Homepage = "https://stephenyin.github.io/NetHang/"
Repository = "https://github.com/stephenyin/NetHang.git"
[tool.setuptools]
packages = ["nethang"]
package-dir = {"" = "."}
py-modules = ["run"]
include-package-data = true
[tool.setuptools.package-data]
nethang = ["templates/*", "static/*", "static/**/*"]
[tool.black]
line-length = 88
target-version = ["py38"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
check_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--cov=nethang --cov-report=term-missing"