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
[]
= ["maturin>=1.0,<2.0"]
= "maturin"
[]
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
= ["pyo3/extension-module"]
[]
= "godata"
= "0.3.0"
= ">=3.9"
= [
"loguru>=0.7.0",
]
[]
= [
"black>=23.7.0",
"isort>=5.12.0",
"ruff>=0.0.285",
"pre-commit>=3.3.3"
]
[]
= "black"
[]
= '''
(
dev/*
| io/*
)
'''
[]
= [
"dev",
"io",
"test*"
]