forked from spiraldb/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 903 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
[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.7.2",
]
[tool.rye.workspace]
members = [
"pyvortex",
"docs",
]
[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