-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (65 loc) · 2.11 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "cython"]
[project]
name = "spatium"
version = "1.5.5"
description = "Spatium: a fast spatial math library"
readme = "README.md"
requires-python = ">= 3.9"
license = {file = "LICENSE.txt"}
authors = [{name = "shBLOCK", email = "[email protected]"}]
keywords = [
"vector",
"linear algebra",
"math",
"math library",
"spatial",
"spatial math",
"gamedev",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Typing :: Typed",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Code Generators",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
]
[project.urls]
"Source" = "https://github.com/shBLOCK/spatium"
"Documentation" = "https://github.com/shBLOCK/spatium/wiki"
"Issue Tracker" = "https://github.com/shBLOCK/spatium/issues"
[tool.cython]
language_level = "3"
[tool.cibuildwheel.windows]
archs = ["AMD64", "x86"]
[tool.cibuildwheel.linux]
archs = ["x86_64", "i686"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[tool.black]
preview = true
enable-unstable-feature = [
"hug_parens_with_braces_and_square_brackets",
"multiline_string_handling"
]