-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.46 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gently"
version = "0.11.0"
description = "Agentic harnessing for microscopy"
readme = "docs/README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Shroff Lab", email = "shroffl@nih.gov"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"anthropic>=0.39.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"aiohttp>=3.9.0",
"numpy>=1.24.0",
"pillow>=10.0.0",
"tifffile>=2023.0.0",
"scipy>=1.10.0",
"scikit-image>=0.21.0",
"jinja2>=3.1.0",
"pyyaml>=6.0",
"matplotlib>=3.7.0",
# Device control
"pymmcore>=11.1.1",
"bluesky>=1.11.0",
"ophyd>=1.9.0",
# ML / SAM
"torch>=2.0.0",
"torchvision>=0.15.0",
"nvidia-ml-py>=12.0.0",
# Testing
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[project.optional-dependencies]
sam = [
"segment-anything",
]
[project.scripts]
gently = "launch_gently:cli_main"
[tool.setuptools.packages.find]
include = ["gently*"]
exclude = ["tests*", "benchmarks*", "scripts*", "examples*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"