-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bio-oracle"
version = "0.1.0"
description = "High-throughput Neuro-Symbolic Agent for automated phenotypic screening."
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Harsh Shroff"},
]
keywords = [
"agentic-ai", "neuro-symbolic", "drug-discovery",
"high-content-screening", "bioinformatics", "pydantic-ai",
"cellpose", "computer-vision", "python-3-11", "reproducible-research"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24.0",
"pandas>=2.0.0",
"cellpose>=3.0.0",
"aicsimageio>=4.10.0",
"scikit-image>=0.20.0",
"pydantic>=2.0.0",
"pydantic-ai",
"tifffile>=2023.0.0",
"requests>=2.31.0",
"opencv-python-headless>=4.8.0",
"tqdm>=4.66.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"google-generativeai",
"google-genai",
"python-dotenv",
"click",
"pyarrow",
"nest_asyncio",
"torch>=2.0.0",
"torchvision>=0.15.0",
"mlflow",
"arize-phoenix",
]
[project.scripts]
bio-oracle = "src.main:main"
[project.urls]
"Homepage" = "https://github.com/HarshShroff/Bio-Oracle"
"Bug Tracker" = "https://github.com/HarshShroff/Bio-Oracle/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "scripts*"]