-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (38 loc) · 1.23 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
[project]
name = "piston_rspy"
version = "0.4.3"
description = "Python bindings for piston_rs."
requires-python = ">=3.8,<3.13"
authors = [{ name = "Jonxslays" }]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
homepage = "https://github.com/Jonxslays/piston_rspy"
repository = "https://github.com/Jonxslays/piston_rspy"
documentation = "https://jonxslays.github.io/piston_rspy/piston_rspy/"
[tool.maturin]
strip = true
[tool.pyright]
typeCheckingMode = "strict"
include = ["piston_rspy"]
[tool.black]
line-length = 99
[build-system]
requires = ["maturin~=1.4.0"]
build-backend = "maturin"