forked from supertuxkart/stk-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.03 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
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "PySuperTuxKart2"
version = "0.4.0"
description="Python bindings for SuperTuxKart"
readme = "README.md"
authors = [
{ name = "Benjamin Piwowarski", email = "benjamin@piwowarski.fr" },
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
# To deal with observations
"numpy",
# Automatic download of resources
"platformdirs",
"requests"
]
[project.urls]
repository = "https://github.com/bpiwowar/pystk2"
documentation = "https://pystk2.readthedocs.io/"
[tool.scikit-build]
cmake.args = ["-DBUILD_RECORDER=0", "-DCHECK_ASSETS=off", "-DUSE_WIIUSE=off", "-DUSE_CRYPTO_OPENSSL=off", "-DUSE_SQLITE3=off"]