-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "openalea.topvine"
dynamic = ["version", "readme"]
description = "3D reconstruction model of grapevine canopy"
authors = [
{name = "Gaetan LOUARN", email = "gaetan.louarn@inrae.fr"},
{name = "Rami ALBASHA", email = "rami.albasha@inrae.fr"},
{name = "Efstathios (Stathis) DELIVORIAS", email = "stathissupagro@gmx.com"}
]
maintainers = [
{name = "Rami ALBASHA", email = "rami.albasha@inrae.fr"}
]
license = "CECILL-C"
requires-python = ">=3.12"
keywords = []
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Framework :: OpenAlea",
]
# You can list here all dependencies that are pip-instalable, and that have a name identical to the one used by conda
# (to allow reuse of this list in meta.yaml).
# If conda name is different, please do not declare the pip name, and declare conda name in the next section
dependencies = [
"pandas",
"numba",
]
[project.optional-dependencies]
dev = [
"matplotlib",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"openalea.topvine" = ["data/**/*"]
[tool.setuptools.dynamic]
version = { attr = "openalea.topvine.version.__version__"}
readme = { file = ["README.md"] }
[tool.setuptools.packages.find]
where = ["src"]
# Conda-only deps, not available on PyPI
# Channels: openalea.plantgl → openalea3
[tool.conda.environment]
dependencies = [
"openalea.plantgl",
]