-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (82 loc) · 2.38 KB
/
pyproject.toml
File metadata and controls
94 lines (82 loc) · 2.38 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
# FB 2025-04-14: based on ADEL and hydroshoot, sphinx pkg in environment.yml
[build-system]
requires = [
"setuptools",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
# allow openalea to be a namespace package
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = false # force explicit declaration of data (disable automatic inclusion)
# enable dynamic versioning based on git tags
[tool.setuptools_scm]
# Format version to ease alignment with conda/meta.yaml tag-based versioning
fallback_version = "2.4.3.dev0"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[project]
name = "openalea.visualea"
authors = [
{ name = "Christophe Pradal" },
]
description = "OpenAlea Visual Programming Environment."
readme = "README.md"
license = "CECILL-C"
license-files = ["LICEN[CS]E*"]
requires-python = ">=3.10"
keywords=['visual programming', 'openalea', 'Scientific Workflows']
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"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",
]
dynamic = ["version"]
dependencies = [
"setuptools",
]
# section specific to conda-only distributed package (not used by pip yet)
[tool.conda.environment]
channels = [
"openalea3",
"conda-forge"
]
dependencies = [
"qtconsole",
"QtPy",
"openalea.core",
"openalea.oalab",
"openalea.grapheditor",
"openalea.scipack",
]
[project.optional-dependencies]
test = ["pytest"]
doc = [
"sphinx-favicon",
"sphinx-rtd-theme",
"pydata-sphinx-theme",
"myst-parser",
"nbsphinx",
"sphinx-copybutton",
"ipykernel",
"ipython_genutils",
]
[project.urls]
Repository = "https://github.com/openalea/visualea"
Homepage = "https://visualea.rtfd.io/"
"Bug Tracker" = "https://github.com/openalea/visualea/issues"
Discussions = "https://github.com/openalea/visualea/discussions"
Changelog = "https://github.com/openalea/visualea/releases"
[tool.setuptools.package-data]
'openalea.visualea.resources' = ['*.ui', '*.png']
[project.entry-points."wralea"]
"visualea" = "openalea.visualea_wralea"
[project.scripts]
"visualea" = "openalea.visualea.visualeagui:main"