-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (78 loc) · 1.98 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
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
84
85
86
[project]
name = "master_thesis"
version = "0.0.1"
authors = [
{ name="dadada", email="[email protected]" },
]
description = "Master thesis data"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.ruff]
line-length = 88
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
[tool.mypy]
python_version = "3.10"
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
no_implicit_optional = true
ignore_missing_imports = true
[tool.poetry]
name = "master-thesis-data"
version = "0.1.0"
description = ""
authors = ["dadada <[email protected]>"]
readme = "README.md"
packages = [{include = "master_thesis_data"}]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.5.3"
seaborn = "^0.12.2"
numpy = "^1.24.2"
matplotlib = "^3.7.0"
[tool.poetry.group.dev.dependencies]
python-lsp-server = "^1.7.1"
black = "^23.1.0"
mypy = "^1.1.1"
[tool.poetry.scripts]
decode-file = "master_thesis_data:decode_file"
jitter = "master_thesis_data:jitter"
mean-delays = "master_thesis_data:mean_delay"
raw-delays = "master_thesis_data:raw_delays"
plot-delays = "master_thesis_data.plot:plot_delays"
throughput = "master_thesis_data.plot:throughput"
plot-rtt = "master_thesis_data.plot:rtt"
delays-apex-ports = "master_thesis_data:plot_delays_apex_ports"
delays-network = "master_thesis_data:plot_delays_network"
ipdv = "master_thesis_data:ipdv"
rtt-timeline = "master_thesis_data:rtt_timeline"
plot-simulate-rtt = "master_thesis_data:plot_simulate_rtt"
csv-simulate-rtt = "master_thesis_data:csv_simulate_rtt"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"