forked from mongodb/mongo-cxx-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 878 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
[project]
name = "mongo-cxx-driver"
version = "0.1.0"
description = "For development only."
requires-python = ">=3.10,<3.12"
dependencies = []
[dependency-groups]
dev = [
# {include-group="apidocs"},
{include-group="clang_format"},
{include-group="config_generator"},
# {include-group="make_release"},
]
apidocs = [
# etc/patch-apidocs-current-redirects.py
"packaging>=14.0",
# etc/patch-apidocs-index-pages.py
"beautifulsoup4>=4.12",
"packaging>=14.0",
]
clang_format = [
# etc/clang-format-all.sh
"clang-format~=19.1",
]
config_generator = [
# .evergreen/config_generator/generate.py
"packaging>=14.0",
"pydantic>=2.8",
"shrub-py>=3.6",
]
make_release = [
# etc/make_release.py (requires python<3.12)
"click>=6.0",
"gitpython>=3.1",
"jira>=3.1",
"looseversion>=1.3",
"pygithub>=2.1",
]