-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (86 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
96 lines (86 loc) · 2.27 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
89
90
91
92
93
94
95
96
[build-system]
requires = ["scikit-build-core", "setuptools-scm"]
build-backend = "scikit_build_core.build"
[project]
name = "openalea.lpy"
authors = [
{name = "Frederic Boudon"}
]
description = "Lindenmayer Systems in Python package for OpenAlea."
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
license-files = ["LICEN[CS]E*"]
# version = "1.0.2"
readme = "README.rst"
dynamic = ["version"]
dependencies = [
"pandas",
"scipy",
]
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-autoapi",
"sphinx-copybutton",
"nbsphinx",
"pydata-sphinx-theme",
"myst-parser",
"sphinx-favicon"
]
notebook = [
"jupyter",
"ipywidgets"
]
test = [
"pytest",
"pytest-cov",
]
[tool.conda.environment]
channels = [
"openalea3",
"conda-forge"
]
dependencies = [
"openalea.plantgl",
"qtconsole",
]
[tool.setuptools_scm]
# Format version to ease alignment with conda/meta.yaml tag-based versioning
fallback_version = "3.14.1.dev0"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
build-dir="./build/"
sdist.include = ["*.so", "*.dylib", "*.dll", "*.pyd", '*.lpy','*.ui','*.qrc','*.json','*.png']
sdist.exclude = ["*.pyc", "*.pyo"]
logging.level = "WARNING"
build.verbose = true
experimental = true
[tool.scikit-build.cmake]
build-type="Release"
source-dir="."
[tool.scikit-build.wheel]
packages = ["src/openalea/"]
[project.urls]
Homepage = "https://github.com/openalea/lpy"
"Bug Tracker" = "https://github.com/openalea/lpy/issues"
Discussions = "https://github.com/openalea/lpy/discussions"
Changelog = "https://github.com/openalea/lpy/releases"
[project.entry-points."wralea"]
"lpy" = "openalea.lpy_wralea"
[project.scripts]
"lpy" = "openalea.lpy.gui.lpystudio:main"
"cpfg2lpy" = "openalea.lpy.cpfg_compat.cpfg2lpy:main"