-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (87 loc) · 2.94 KB
/
pyproject.toml
File metadata and controls
99 lines (87 loc) · 2.94 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
97
98
99
[build-system]
requires = ["scikit-build-core", "setuptools_scm"]
build-backend = "scikit_build_core.build"
[tool.setuptools]
include-package-data = false # force explicit declaration of data (disable automatic inclusion)
[tool.setuptools.package-data]
"openalea.stat_tool" = ["data/**/*"]
# enable dynamic version based on git tags
[tool.setuptools_scm]
fallback_version = "1.4.0.dev0"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
[tool.scikit-build]
build-dir = "./build/"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
logging.level = "WARNING"
build.verbose = true
sdist.include = ["*.so", "*.dylib", "*.dll", "*.pyd", "*.lib"]
editable.rebuild = true
experimental = false
search.site-packages = false
[tool.scikit-build.cmake]
build-type = "Release"
source-dir = "."
[tool.scikit-build.cmake.define]
WITH_TEST = false
WITH_EFENCE = false
[tool.scikit-build.wheel.packages]
"openalea/stat_tool" = "src/openalea/stat_tool"
[project]
name = "openalea.stat_tool"
authors = [
{ name = "Yann Guédon" },
{ name = "Jean-Baptiste Durand" },
{ name = "Pierre Fernique" },
{ name = "Christophe Pradal" },
{ name = "Thomas Cokelaer" },
{ name = "Thomas Arsouze" },
]
description = "Basic Statistical tools"
readme = "README.md"
license = "GPL-2.0"
license-files = ["LICEN[CS]E*"]
requires-python = ">=3.10"
dynamic = ["version"]
classifiers = [
"Development Status :: 1 - Planning",
"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",
]
# 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 = [] # == install_requires
[project.optional-dependencies]
test = ["pytest", "nbmake"]
dev = ["pytest >=6", "pytest-cov >=3"]
doc = [
"sphinx-autobuild",
"pydata-sphinx-theme",
"myst-parser",
"sphinx-favicon",
"ipykernel",
"sphinx-copybutton",
"ipython_genutils",
"nbsphinx",
"ninja",
"breathe",
]
# section specific to conda-only distributed package (not used by pip yet)
[tool.conda.environment]
channels = ["openalea3", "conda-forge"]
dependencies = ["boost", "matplotlib-base", "doxygen"]
[project.urls]
Repository = "https://github.com/openalea/stat_tool"
Homepage = "https://stat_tool.readthedocs.io/"
"Bug Tracker" = "https://github.com/openalea/stat_tool/issues"
Discussions = "https://github.com/openalea/stat_tool/discussions"
Changelog = "https://github.com/openalea/stat_tool/releases"