-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
49 lines (46 loc) · 844 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mrcad"
version = "0.0.1"
dependencies = [
"annotated-types",
"astor",
"asttokens",
"cachetools",
"charset-normalizer",
"datasets>=3.3.2",
"docstring_parser",
"eval_type_backport",
"exceptiongroup",
"json5",
"jsonlines",
"jsonschema",
"jsonschema-specifications",
"numpy<=1.26.4",
"opencv-python>=4.10.0.84",
"opencv-python-headless>=4.11.0.86",
"pandas>=2.2.2",
"parso",
"partial-json-parser",
"pillow==10.3.0",
"pyarrow",
"pydantic>=2.10.6",
"pydantic_core>=2.27.2",
"pyproject_hooks",
"pytest",
"pytest-datafiles",
"PyYAML",
"scikit-learn>=1.5.0",
"scipy>=1.13.1",
"tqdm",
"typeguard",
"typing_extensions"
]
[tool.setuptools.package-dir]
mrcad = "mrcad"
[tool.pytest.ini_options]
testpaths = [
"tests"
]