-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.46 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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "satisfactory-save"
version = "0.8.0"
description = "A savegame parsing package for Satisfactory."
readme = "libsavepy/README.md"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: C++',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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 :: File Formats',
'Topic :: Games/Entertainment',
'Topic :: Software Development',
]
[project.urls]
homepage = "https://github.com/moritz-h/satisfactory-3d-map"
source = "https://github.com/moritz-h/satisfactory-3d-map"
tracker = "https://github.com/moritz-h/satisfactory-3d-map/issues"
[tool.scikit-build]
cmake.version = ">=3.27.0"
ninja.version = ">=1.11"
cmake.build-type = "Release"
sdist.exclude = ["map"]
[tool.scikit-build.cmake.define]
SATISFACTORY3DMAP_BUILD_PIC = "ON"
SATISFACTORY3DMAP_BUILD_APP = "OFF"
SATISFACTORY3DMAP_BUILD_LIB_PYTHON = "ON"