forked from kitao/pyxel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 987 Bytes
/
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
[build-system]
requires = ["maturin>=0.13.3,<0.14"]
build-backend = "maturin"
[project]
name = "pyxel"
version = "1.8.19"
description = "A retro game engine for Python"
readme = "docs/README-abspath.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [{ name = "Takashi Kitao", email = "takashi.kitao@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Rust",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Sound/Audio",
]
urls = { homepage = "https://github.com/kitao/pyxel" }
[project.scripts]
pyxel = "pyxel.cli:cli"
[tool.maturin]
manifest-path = "crates/pyxel-extension/Cargo.toml"
python-source = "python"
[tool.isort]
profile = "black"