-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
46 lines (42 loc) · 1.17 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
[build-system]
requires = [
"cmake>=3.15",
"conan==1.*",
"ninja",
"pybind11",
"scikit-build-core[pyproject]",
]
build-backend = "scikit_build_core.build"
[project]
name = "astro-pink"
version = "2.5"
authors = [
{ name="Bernd Doser", email="[email protected]" },
]
description = "Parallelized rotation and flipping INvariant Kohonen maps"
readme = "README.md"
license = {text = "GPL-3.0"}
requires-python = ">=3.8"
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
]
[tool.scikit-build]
# Ref: https://scikit-build-core.readthedocs.io/en/latest/configuration.html
# Include and exclude patterns, in gitignore syntax. Include overrides exclude.
sdist.include = [
"CMakeLists.txt",
"LICENSE",
"README.md",
"pyproject.toml",
"src",
"python/pink/*.py",
"python/tests/*.py",
]
sdist.exclude = ["*"]
[tool.pytest.ini_options]
testpaths = ["python/tests"]