-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 2.18 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
[build-system]
requires = [
"setuptools",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
# where your source lies if you followed src layout
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = false # force explicit declaration of data (disable automatic inclusion)
# enable dynamic version based on git tags
[tool.setuptools_scm]
[project]
name = "openalea.pyRTVPL"
authors = [
{ name = "Tristan Gérault", email = "tristan.gerault@inrae.fr" },
{ name = "Christophe Pradal", email = "christophe.pradal@fnria.fr" }
]
description = "VirtualPlantLab Raytracer api for python"
readme = "README.md"
license = "CECILL-C"
license-files = ["LICEN[CS]E*"]
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
#"License :: OSI Approved :: CeCILL-C License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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 = []
# section specific to conda-only distributed package (not used by pip yet)
[tool.conda-environment]
dependencies = [
"numpy",
"juliacall"
]
[project.optional-dependencies]
test = [
"pytest",
"nbmake"
]
dev = [
"pytest >=6",
"pytest-cov >=3",
]
doc = [
"pydata-sphinx-theme",
"myst-parser",
"sphinx-favicon",
"ipykernel",
"sphinx-copybutton",
"ipython_genutils",
"nbsphinx"
]
[project.urls]
Repository = "https://github.com/GeraultTr/pyRTVPL"
[project.entry-points."wralea"]
"my_pkg" = "openalea.pyRTVPL_wralea"