-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.17 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "cell-counting-imager"
description = "Control and image processing software that powers the ACCS Cell Counting Imager"
requires-python = "~=3.12.0"
license = { file = "LICENSE" }
authors = [
{name = "Greg Courville", email = "greg.courville@czbiohub.org"},
{name = "Paul Lebel", email = "paul.lebel@czbiohub.org"},
]
maintainers = [{name = "Greg Courville", email = "greg.courville@czbiohub.org"}]
dependencies = [
"scikit-image~=0.24.0",
"matplotlib~=3.9.0",
"pyserial~=3.5.0",
"pypylon~=4.1.0",
"aiohttp~=3.11.0",
"ticlib==0.2.2",
]
dynamic = ["version"]
[project.scripts]
cci_run = "cell_counting_imager.cli.cci_run:main"
cci_test = "cell_counting_imager.cli.cci_test:main"
cci_config = "cell_counting_imager.cli.cci_config:main"
[tool.setuptools]
packages = [
"cell_counting_imager",
"cell_counting_imager.cli",
"cell_counting_imager.hw_control",
"cell_counting_imager.image_processing",
]
[tool.setuptools.package-data]
cell_counting_imager = [
"configs/*.json",
]
[tool.setuptools_scm]
write_to = "cell_counting_imager/_version.py"