-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.21 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
[project]
name = "torrent-sim"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "gitgud5000", email = "17186026+gitgud5000@users.noreply.github.com" }
]
requires-python = ">=3.13"
dependencies = [
"ffmpeg>=1.4",
"ipykernel>=7.1.0",
"jupyterlab>=4.4.10",
"matplotlib>=3.10.7",
"networkx>=3.5",
"numpy>=2.3.4",
"plotly>=6.4.0",
"scipy>=1.16.3",
"simpy>=4.1.1",
]
[project.scripts]
torrent-sim = "torrent_sim:main"
[build-system]
requires = ["uv_build>=0.9.9,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"black>=25.11.0",
"graphviz>=0.21",
"mypy>=1.18.2",
"pydeps>=3.0.1",
"pylint>=4.0.3",
"pytest>=9.0.1",
"ruff>=0.14.5",
]
[tool.pylint.messages_control]
disable = [
"missing-class-docstring",
]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff]
line-length = 88
indent-width = 4
show-fixes = true
# src = ["src","notebooks","notebooks/modelling/"]
exclude = [
"*.git",
]
[tool.ruff.lint]
select = [
"F", # Pyflakes
"W", # pycodestyle
"E", # pycodestyle
"I", # isort
"UP", # pyupgrade
"PL", # Pylint
"T201", # Print Statement
"C"
]