forked from XinyuZeng/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.03 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
[project]
name = "workspace"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Nicholas Gates", email = "nick@nickgates.com" }
]
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["dummy"] # Required for workspace project
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=7.4.0",
"pytest-benchmark>=4.0.0",
"ruff>=0.1.11",
"pip>=23.3.2",
"maturin>=1.4.0",
"mkdocs>=1.5.3",
"mkdocs-material>=9.5.11",
"mkdocs-include-markdown-plugin>=6.0.4",
"mike>=2.0.0",
]
[tool.rye.scripts]
serve-docs = "mkdocs serve"
[tool.rye.workspace]
members = [
"pyvortex",
]
[tool.ruff]
line-length = 120
extend-exclude = [".venv"]
[tool.ruff.lint]
select = ["F", "E", "W", "UP", "I"]
# Do not auto-fix unused variables. This is really annoying when IntelliJ runs autofix while editing.
unfixable = ["F841"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
xfail_strict = true