-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1023 Bytes
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1023 Bytes
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
[project]
name = "spaghettree"
version = "0.3.0"
description = "Code that reorganises code"
readme = "README.md"
authors = [
{ name = "ed cuss", email = "edcussmusic@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"attrs>=25.4.0",
"black>=25.1.0",
"danom>=0.10.0",
"isort>=6.0.1",
"libcst>=1.6.0",
"numpy>=2.3.2",
"polars>=1.38.1",
"python-dotenv>=1.1.1",
"ruff>=0.12.9",
"tqdm>=4.67.1",
]
[project.scripts]
spaghettree = "spaghettree:main"
[build-system]
requires = ["uv-build"]
build-backend = "uv_build"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"hypothesis>=6.140.2",
"ipykernel>=6.29.5",
"papertrail>=0.1.2",
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"repo-mapper-rs>=0.3.0",
"ruff>=0.9.9",
]
[tool.pytest.ini_options]
addopts = [
"-vv",
"--cov=src",
"--cov-report=term-missing:skip-covered",
]
testpaths = ["tests"]