-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
146 lines (132 loc) · 3.75 KB
/
Copy pathpyproject.toml
File metadata and controls
146 lines (132 loc) · 3.75 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[build-system]
requires = ["uv_build>=0.8.7,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend] # Allows flat layout
module-root = "."
[project]
name = "garden-ai"
version = "0.0.0" # placeholder
description = "Garden: tools to simplify access to scientific AI advances."
# note to contributors: feel free to add yourselves to this list 🌱
maintainers = [
{name = "Globus Labs", email = "labs@globus.org"},
{name = "Owen Price Skelly"},
{name = "Will Engler"},
{name = "Hayden Holbrook"},
{name = "Ben Blaiszik"},
]
authors = [{name = "Garden Team", email = "labs@globus.org"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
site_name = "Garden-AI Documentation"
site_url = "https://garden-ai.readthedocs.io/"
dependencies = [
"cryptography>=44.0.0,<45.0.0",
"requests>=2.20.0",
"gitpython>=3.1.35,<4.0.0",
"globus-sdk>=3.34.0,<4.0.0",
"pydantic>=2.7.2,<3.0.0",
"typer>=0.12.3",
"click>=8.0.0,<8.2.0",
"jinja2>=3.1.2,<4.0.0",
"huggingface-hub==0.18.0",
"pyyaml>=6.0,<7.0",
"globus-compute-sdk>=4.0.0",
"tabulate>=0.9.0,<1.0.0",
"types-tabulate>=0.9.0.3,<1.0.0.0",
"nbformat>=5.9.2,<6.0.0",
"ipython<8.13",
"ipywidgets>=8.1.3,<9.0",
"boto3>=1.29,<2.0",
"boto3-stubs>=1.29,<2.0",
"urllib3<2; python_version<'3.10'",
"urllib3>=2.2.1; python_version>='3.10'",
"python-dotenv>=1.0.1,<2.0",
"pydantic-core>=2.18.4,<3.0.0",
"modal>=1.0.0,<1.1.0",
"mixpanel>=4.10.1,<5.0.0",
"marshmallow<4.0.0",
# used transitively by modal -> grpclib, force 4.3.0 to reslove CVE-2025-57804
# Can remove once we upgrade to more current modal sdk version
"h2>=4.3.0",
"groundhog-hpc>=0.5.0",
]
[project.optional-dependencies]
mlip = ["ase"]
mcp = ["mcp>=1.0.0", "uv>=0.8.0"]
[dependency-groups]
develop = [
"pre-commit>=4.0.0",
"ruff>=0.6.9",
"mkdocs-callouts>=1.9.0",
"mkdocs-extensions>=0.1.2",
"pymdown-extensions>=10.0.1",
"pytest>=7.2.0,<8.0.0",
"pytest-mock>=3.10.0,<4.0.0",
"pytest-cov>=4.0.0,<5.0.0",
"flake8>=5.0.4,<6.0.0",
"mypy==1.14.1",
"numpy>=1.24.0,<2.0.0",
"pandas==2.0.3; python_version<'3.9'",
"pandas>=2.0.0,<3.0.0; python_version>='3.9'",
"types-requests>=2.20.0,<3.0.0",
"safety>=3.0.0",
"types-pyyaml>=6.0.12.8,<7.0.0",
"coverage[toml]>=7.2.3,<8.0.0",
"faker>=26.1.0,<27.0.0",
"pytest-random-order>=1.1.1,<2.0.0",
"pexpect>=4.9.0,<5.0.0",
"mixpanel>=4.10.1,<5.0.0",
"zensical>=0.0.26",
"mkdocstrings-python>=2.0.3",
"mkdocs-material>=9.7.5",
]
[project.urls]
homepage = "https://thegardens.ai"
repository = "https://github.com/Garden-AI/garden"
documentation = "https://garden-ai.readthedocs.io/en/latest/"
[project.scripts]
garden-ai = "garden_ai.app.main:app"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.mypy]
plugins = ["pydantic.mypy"]
exclude = [
"fixtures/",
"scripts/",
"garden_ai/hpc_executors/",
"garden_ai/hpc_gardens/",
]
# Ignore missing imports for optional dependencies
[[tool.mypy.overrides]]
module = [
"uv",
"torch",
"torch_sim",
"torch_sim.*",
"mace.*",
"sevenn.*",
"mattersim.*",
"mcp.*",
"groundhog_hpc",
"groundhog_hpc.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
"cli: deselect with '-m \"not cli\"' to disable CLI tests.",
"integration: skipped by default, run `pytest --integration` to enable",
"ete: mark a tests as an end-to-end test",
]
addopts = "--random-order"
[tool.coverage.run]
source = ["garden_ai/"]
omit = [
"garden_ai/notebook_templates/*",
"tests/*",
"scripts/*",
"garden_ai/hpc_gardens/*",
"garden_ai/hpc_executors/*",
]