-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 943 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
[project]
name = "foamai"
version = "0.1.0"
description = "Workspace for AI-powered CFD"
readme = "README.md"
authors = [
{ name = "bbaserdem", email = "[email protected]" },
{ name = "ericDrury", email = "[email protected]" },
{ name = "mcbagz", email = "[email protected]" },
{ name = "jackwimbish", email = "[email protected]" },
]
requires-python = ">=3.12"
[tool.uv.workspace]
members = [
"src/foamai-client",
"src/foamai-core",
"src/foamai-desktop",
"src/foamai-server",
]
[tool.uv.sources]
foamai-client = { workspace = true }
foamai-core = { workspace = true }
foamai-desktop = { workspace = true }
foamai-server = { workspace = true }
[dependency-groups]
dev = [
"pyyaml>=6.0.2",
{include-group = "lint"},
{include-group = "test"},
]
lint = [
"ruff>=0.12.1",
]
test = [
"pytest>=8.4.1",
"pytest-asyncio>=0.21.0",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
]