-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 992 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 992 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
[project]
name = "just-dna-lite"
version = "0.2.1"
description = "Just DNA Lite version to analyze your omics faster"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"typer>=0.24.1",
"just-dna-pipelines",
"webui",
"pyyaml>=6.0.3",
"dagster-dg-cli>=1.12.22",
"google-genai>=1.71.0",
]
[tool.uv.sources]
just-dna-pipelines = { workspace = true }
webui = { workspace = true }
[dependency-groups]
dev = [
"ipykernel>=7.2.0",
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]
[project.scripts]
start = "just_dna_lite.cli:_start_all_cli"
ui = "webui.run:main"
dagster-ui = "just_dna_lite.cli:_start_dagster_cli"
pipelines = "just_dna_lite.cli:app"
[tool.uv.workspace]
members = ["just-dna-pipelines", "webui"]
[build-system]
requires = ["uv-build"]
build-backend = "uv_build"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:eliottree.*",
"ignore:datetime.datetime.utcfromtimestamp\\(\\) is deprecated:DeprecationWarning",
]