-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 845 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
[tool.poetry]
name = "cellsparse-api"
version = "0.2.0"
description = ""
authors = ["Ko Sugawara <ko.sugawara@ens-lyon.fr>"]
readme = "README.md"
packages = [{include = "cellsparse_api", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
fastapi = {extras = ["all"], version = "^0.96.0"}
cellsparse = {git = "https://github.com/ksugar/cellsparse-core.git"}
geojson = "^3.0.1"
shapely = "^2.0.1"
tensorflow = {version = "2.12.0", optional = true}
tensorflow-macos = {version = "2.12.0", optional = true}
tensorflow-metal = {version = "^1.0.0", optional = true}
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
[tool.poetry.extras]
tensorflow = ["tensorflow"]
tensorflow-macos = ["tensorflow-macos", "tensorflow-metal"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"