-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (58 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sleap-roots"
authors = [
{name = "Elizabeth Berrigan", email = "[email protected]"},
{name = "Lin Wang", email = "[email protected]"},
{name = "Talmo Pereira", email = "[email protected]"}
]
description="Analysis tools for SLEAP-based plant root phenotyping."
requires-python = ">=3.7"
keywords = ["sleap", "plants", "roots", "phenotyping"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"numpy",
"h5py",
"attrs",
"pandas",
"matplotlib",
"seaborn",
"sleap-io>=0.0.11",
"scikit-image",
"shapely"
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "sleap_roots.__version__"}
readme = {file = ["README.md"], content-type="text/markdown"}
[tool.setuptools.packages.find]
include = ["sleap_roots"] # Include only the sleap_roots package
exclude = ["notebooks"] # Exclude the notebooks directory
namespaces = false
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"pydocstyle",
"toml",
"twine",
"build"
]
[project.urls]
Homepage = "https://github.com/talmolab/sleap-roots"
Repository = "https://github.com/talmolab/sleap-roots"
[tool.black]
line-length = 88
[pydocstyle]
convention = "google"
match-dir = "sleap_roots"