-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.32 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "cython"]
[project]
name = "gdmath"
version = "1.2"
description = "GdMath: a fast math library for game development"
readme = "README.md"
requires-python = ">= 3.9"
license = {file = "LICENSE.txt"}
authors = [{name = "shBLOCK", email = "[email protected]"}]
keywords = ["vector", "gamedev", "linear algebra", "math library", "math", "game development"]
classifiers = [
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
]
[project.urls]
"Documentation" = "https://github.com/shBLOCK/GdMath/wiki"
"Source" = "https://github.com/shBLOCK/GdMath"
"Issue Tracker" = "https://github.com/shBLOCK/GdMath/issues"
[tool.cibuildwheel.windows]
archs = ["AMD64", "x86"]
[tool.cibuildwheel.linux]
archs = ["x86_64", "i686"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]