-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 888 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 888 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
[project]
name = "transcribe"
version = "0.1.0"
description = "Tri-Agent Ontology Framework for Automated Transcriptomic Annotation"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"scanpy",
"squidpy",
"gprofiler-official",
"pandas",
"matplotlib",
"seaborn",
"anndata",
"click",
"python-dotenv",
"pydantic",
"langchain",
"langchain-openai",
"langchain-google-genai",
"langchain-pinecone",
"langgraph",
"pinecone",
"distinctipy",
"rbo",
"setuptools<70.0",
"openpyxl>=3.1.5",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[project.scripts]
transcribe = "transcribe.cli:main_cli"
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]