-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (39 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ariadne-roots"
version = "0.0.3"
authors = [
{ name="Matthieu Platre", email="[email protected]" },
{ name="Kian Faizi", email="[email protected]" },
{ name="Elizabeth Berrigan", email="[email protected]" },
]
description = "Ariadne root tracing GUI and trait calculator."
readme = "README.md"
requires-python = ">=3.8"
keywords = ["ariadne", "plants", "roots", "phenotyping", "pareto"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
dependencies = [
"pillow",
"networkx",
"numpy",
"scipy",
"matplotlib",
]
[project.urls]
Homepage = "https://github.com/Salk-Harnessing-Plants-Initiative/Ariadne"
Issues = "https://github.com/Salk-Harnessing-Plants-Initiative/Ariadne/issues"
[project.optional-dependencies]
dev = [
"toml",
"twine",
"build"
]
[project.scripts]
ariadne-trace = "ariadne_roots.main:main"