-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rhizoai"
version = "0.0.1"
authors = [
{ name="Mohamed O. Hassan", email="mhassan@tamu.edu" },
{ name="Aramy Truong", email="aramy.truong@pnnl.gov" },
{ name="Maruti K. Mudunuru", email="maruti@pnnl.gov" },
{ name="Leslie G. Butler", email="lbutler@lsu.edu" },
{ name="Andre Rovai", email="rovaias@si.edu" },
{ name="Ivan Vargas-Lopez", email="ivarga2@lsu.edu" },
{ name="Curtis Larimer", email="curtis.larimer@pnnl.gov" },
{ name="Clare Hermanson", email="Clare.Hermanson@colorado.edu" },
{ name="Joseph Daddona", email="jdaddona@uoregon.edu" },
{ name="Amir H. Ahkami", email="amir.ahkami@pnnl.gov" },
{ name="Jay Bardhan", email="jaydeep.bardhan@pnnl.gov" },
{ name="Tamas Varga", email="Tamas.Varga@pnnl.gov" },
{ name="Kelly Stratton", email="kelly.stratton@pnnl.gov" },
{ name="Satish Karra", email="karra@pnnl.gov" },
{ name="Robert Twilley", email="rtwilley@lsu.edu" },
{ name="Navid H. Jafari", email="njafari@tamu.edu" },
]
description = "A package to preprocess AI-ready datasets for rhizosphere imaging and root classification"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements_preprocess.txt"]}
optional-dependencies.method1 = {file = ["requirements-method1.txt"]}
optional-dependencies.method2 = {file = ["requirements-method2.txt"]}