-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (77 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
88 lines (77 loc) · 2.05 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"]}
# enable dynamic version based on git tags
[tool.setuptools_scm]
# Configure to align with the one of meta.yaml
fallback_version = "0.0.0.dev0"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[project]
name = "openalea.adel"
authors = [
{ name = "Christian Fournier" },
{ name = "Christophe Pradal" },
{ name = "Bruno Andrieu" },
]
description = "3D plant simulation of graminae crops"
license = "CECILL-C"
license-files = ["LICEN[CS]E*"]
requires-python = ">=3.10"
keywords = ["openalea", "FSPM", "cereals"]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
dynamic = ["readme","version"]
#version = "2.0.2"
dependencies = [
"numpy",
"scipy",
"pandas",
]
[project.optional-dependencies]
test = ["pytest"]
doc = [
"pydata-sphinx-theme",
"myst-parser",
"sphinx-favicon",
"nbsphinx",
"nbsphinx-link",
"ipykernel",
"sphinx-copybutton",
"ipython_genutils",
]
notebook = ["jupyter"]
[project.urls]
Homepage = "https://github.com/openalea/adel"
"Bug Tracker" = "https://github.com/openalea/adel/issues"
Discussions = "https://github.com/openalea/adel/discussions"
Changelog = "https://github.com/openalea/adel/releases"
[project.entry-points."wralea"]
"adel" = "openalea.adel"
[tool.conda.environment]
channels = [
"openalea3",
"conda-forge"
]
dependencies = [
"openalea.mtg",
"openalea.plantgl",
"openalea.caribu",
"openalea.astk",
"openalea.core",
"matplotlib-base",
"rpy2" # use conda as pip rpy2 do not install R
]
[tool.setuptools.package-data]
"*" = ['*.RData', '*.R', '*.8', '*.h', '*.str','*.txt', '*.l', '*.map', '*.csv', '*.json', '*.png']