-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (46 loc) · 836 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mesa_interactive"
dynamic = ["version"]
description = "Interactive visualization of Mesa simulations"
readme = "README.md"
requires-python = ">=3.6"
license = "MIT"
dependencies = ["mesa", "solara", "altair"]
[tool.hatch.version]
path = "src/mesa_interactive/__about__.py"
[tool.hatch.build.targets.sdist]
exclude = ["/.github", "/.vscode"]
[tool.hatch.build.targets.wheel]
packages = ["src/mesa_interactive"]
[tool.ruff]
extend-select = [
"A",
"B",
"C",
"DTZ",
"E",
"EM",
"F",
"FBT",
"I",
"ICN",
"ISC",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"Q",
"RUF",
"S",
"SIM",
"T",
"TID",
"UP",
"W",
"YTT",
]
ignore = ["N802", "PLR0913", "B018", "C901"]