-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.03 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
[build-system]
requires = ["setuptools >= 64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["plantcv.annotate"]
[project]
name = "plantcv-annotate"
dynamic = ["version"]
dependencies = [
"plantcv",
"matplotlib",
"napari",
"PyQt5"
]
requires-python = ">=3.11"
authors = [
{name = "PlantCV Team", email = "plantcv@danforthcenter.org"},
]
description = "PlantCV Annotate add-on package"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["plantcv", "annotation", "image annotation", "annotate", "interactive"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Intended Audience :: Science/Research",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-qt"
]
[project.urls]
Homepage = "https://plantcv.org"
Documentation = "https://plantcv.readthedocs.io"
Repository = "https://github.com/danforthcenter/plantcv-annotate"
[tool.setuptools_scm]