-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.59 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
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
# allow openalea to be a namespace package
[tool.setuptools.packages.find]
where = ["src"]
# 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.astk"
authors = [
{ name = "Christian Fournier", email="christian.fournier@inrae.fr"}
]
description = "Sky luminance generator for FSPM light simulators"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering",
]
license = "CECILL-C"
license-files = ["LICEN[CS]E*"]
keywords = ["openalea", "sky", "light", "meteorology"]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = ["pvlib"]
[project.optional-dependencies]
test = [
"pytest",
"nbmake",
"matplotlib",
]
doc = [
"pydata-sphinx-theme",
"myst-parser",
"sphinx-favicon",
"ipykernel",
"sphinx-copybutton",
"ipython_genutils",
"nbsphinx",
]
plot = [
"matplotlib",
"jupyterlab"
]
[project.entry-points."wralea"]
"astk" = "openalea.astk_wralea"
[project.urls]
Repository= "https://github.com/openalea/astk"
Homepage = "https://openalea-astk.readthedocs.io/"
"Bug Tracker" = "https://github.com/openalea/astk/issues"
Discussions = "https://github.com/openalea/astk/discussions"
# not used yet
[tool.conda.environment]
channels = [
"openalea3",
"conda-forge"
]
optional-dependencies = ["openalea.plantgl"]