-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.28 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
[project]
name = "macrostrat.python_libraries"
version = "1.4.0"
description = "Macrostrat Python libraries"
authors = [{ name = "Daven Quinn", email = "dev@davenquinn.com" }]
requires-python = ">=3.10,<4"
[dependency-groups]
dev = [
"black>=22.10.0,<27",
"macrostrat.app_frame",
"macrostrat.database",
"macrostrat.dinosaur",
"macrostrat.package_tools",
"macrostrat.utils",
"macrostrat.auth_system",
"pytest>=7.2.2,<8",
"python-dotenv>=1.0.0,<2",
"requests>=2.27.1,<3",
"rich>=13,<14",
"toml>=0.10.2,<0.11",
"isort>=5.13.2,<6",
"mkdocs>=1.5.3,<2",
"mkdocs-material>=9.5.3,<10",
"mkdocs-monorepo-plugin>=1.0.5,<2",
"mkdocstrings[python]>=0.24.1,<0.25",
]
[tool.uv]
package = false
default-groups = "all"
[tool.uv.sources]
"macrostrat.app_frame" = { path = "./app-frame", editable = true }
"macrostrat.database" = { path = "./database", editable = true }
"macrostrat.dinosaur" = { path = "./dinosaur", editable = true }
"macrostrat.package_tools" = { path = "./package-tools", editable = true }
"macrostrat.utils" = { path = "./utils", editable = true }
"macrostrat.auth_system" = { path = "./auth-system", editable = true }
[tool.pytest.ini_options]
addopts = "--confcutdir=."
[tool.isort]
profile = "black"
known_first_party = "macrostrat"