-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 2.07 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 2.07 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
[build-system]
requires = ["setuptools",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
# enable dynamic versioning based on git tags
[tool.setuptools_scm]
# Format version to ease alignment with conda/meta.yaml tag-based versioning
fallback_version = "1.4.0.dev0"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[project]
name = "openalea.rsml"
dynamic = ["version"]
description = "RootSystemML (RSML) is a file format to represent root architectural data. This package is an openalea pckage to manage it, import/export between .rsml files and MTG, etc."
readme = "README.md"
authors = [
{ name = "Christophe Pradal", email = "christophe.pradal@cirad.fr" }
]
license = "CECILL-C"
license-files = ["LICEN[CS]E*"]
keywords = ["OpenAlea", "RSML", "Plant Architecture"]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pandas",
"xlsxwriter",
"path",
"numpy",
]
[project.urls]
Homepage = "http://github.com/openalea/rsml"
"Bug Tracker" = "https://github.com/openalea/rsml/issues"
Discussions = "https://github.com/openalea/rsml/discussions"
[project.entry-points."wralea"]
"rsml" = "openalea.rsml_wralea"
[project.optional-dependencies]
test = [
"pytest",
]
doc = [
"sphinx-favicon",
"sphinx-rtd-theme",
"pydata-sphinx-theme",
"myst-parser",
"sphinx-copybutton",
"nbsphinx",
]
# section specific to conda-only distributed package (not used by pip yet)
# based on astk, used in hydroroot with a meta.yaml that only use metadata from
# pyproject => only pyproject.toml must be modified
[tool.conda.environment]
channels = [
"openalea3",
"conda-forge"
]
dependencies = [
"openalea.mtg",
"matplotlib-base",
]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true