forked from Desbordante/desbordante-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.42 KB
/
pyproject.toml
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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "desbordante"
version = "2.2.0"
description = "Science-intensive high-performance data profiler"
requires-python = ">=3.7"
readme = "README_PYPI.md"
license = { text = "AGPL-3.0-only" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = { homepage = "https://desbordante.unidata-platform.ru/", repository = "https://github.com/desbordante/desbordante-core", issues = "https://github.com/desbordante/desbordante-core/issues" }
[tool.scikit-build.cmake.define]
PYTHON = "INSTALL"
UNPACK_DATASETS = "OFF"
COMPILE_TESTS = "OFF"
BUILD_NATIVE = "OFF"
ASAN = "OFF"
CMAKE_BUILD_TYPE = "Release"
[tool.scikit-build.sdist]
include = ["lib/*"]
exclude = [
"datasets/*",
"images/*",
"pull_datasets.sh",
"docs/*",
"build.sh",
"build.bat",
"test_input_data/",
"src/tests/*",
"examples/*"
]