-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 886 Bytes
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 = ["maturin>=1.4.0,<1.5.0"]
build-backend = "maturin"
[project]
name = "arcade-accelerate"
version = "1.0.2"
description = "A companion library for Arcade providing accelerated Rust functions"
readme = "README.md"
authors = [
{name="Darren Eberly", email="Daren.Eberly@gmail.com"}
]
maintainers = [
{name="Darren Eberly", email="Darren.Eberly@gmail.com"}
]
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
license = {file = "LICENSE"}
[project.urls]
homepage = "https://github.com/pythonarcade/arcade-accelerate"
[project.optional-dependencies]
dev = [
"ruff",
"black",
"matplotlib",
"seaborn"
]
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]