-
Notifications
You must be signed in to change notification settings - Fork 463
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (59 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
73 lines (59 loc) · 1.57 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "mongo-c-driver"
version = "0.1.0"
description = "For development only."
requires-python = ">=3.10"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
{ include-group = "docs" },
{ include-group = "evg" },
{ include-group = "format" },
]
format = [
# tools/format.py
"clang-format~=20.1.0",
]
format-scripts = [
"ruff>=0.13.0",
"shfmt-py>=3.12.0.2",
]
docs = [
# .evergreen/scripts/build-docs.sh
"furo>=2023.5.20",
"sphinx-design>=0.5.0",
"sphinx>=7.1.1,<9.0",
]
evg = [
# .evergreen/config_generator
"packaging>=14.0",
"pydantic>=2.8",
"shrub-py>=3.7",
# .evergreen/legacy_config_generator/evergreen_config_generator/__init__.py
"yamlloader>=1.5",
]
[project.scripts]
mc-evg-generate = "config_generator.generate:main"
[tool.hatch.build.targets.wheel]
packages = [
".evergreen/config_generator",
]
[tool.ruff]
line-length = 120
src = [".evergreen", "etc"]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
[tool.uv]
required-environments = [
"platform_system == 'Linux' and platform_machine == 'x86_64'",
"platform_system == 'Linux' and platform_machine == 'aarch64'",
"platform_system == 'Linux' and platform_machine == 'ppc64le'",
"platform_system == 'Linux' and platform_machine == 's390x'",
"platform_system == 'Darwin' and platform_machine == 'x86_64'",
"platform_system == 'Darwin' and platform_machine == 'arm64'",
"platform_system == 'Windows' and platform_machine == 'AMD64'",
]