-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 784 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (23 loc) · 784 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "engine-revival"
version = "0.1.1"
description = "brender-archival: revival of Argonaut BRender and the tooling spine for reviving historical rendering and game engines."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "AGPL-3.0-or-later" }
authors = [{ name = "Zain Dana Harper" }]
keywords = ["brender", "game-engines", "rendering", "preservation", "archives", "provenance"]
dependencies = []
[project.optional-dependencies]
test = ["pytest>=8"]
media = ["Pillow>=10"]
[project.scripts]
engine-revival = "engine_revival.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]