-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 960 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 960 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "colonyquant"
version = "0.1.0"
description = "Automated pipeline for quantitative analysis of Alkaline Phosphatase (AP) staining and colony morphology in stem-cell assays."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name="Benjamin Kidder", email="benjamin.kidder@wayne.edu" },
]
license = { text = "Academic and non-commercial use only; commercial use requires a separate license (see LICENSE file)" }
dependencies = [
"opencv-python",
"numpy",
"pandas",
"matplotlib",
"scipy",
"scikit-learn",
]
[project.scripts]
colonyquant = "colonyquant.cli:main"
colonyquant-prcurve = "colonyquant.cli:generate_pr_curve"
colonyquant-visualize = "colonyquant.cli:visualize_colonies"
[project.urls]
Homepage = "https://github.com/KidderLab/colonyquant"
Repository = "https://github.com/KidderLab/colonyquant"