-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (32 loc) · 890 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
36
37
38
39
40
[project]
name = "tinyecs"
description = "The teeniest, tiniest ECS system"
version = "0.2.9"
readme = "README.md"
authors = [
{ name="Michael Lamertz", email="[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: pygame",
]
dependencies = [
"pgcooldown"
]
[project.optional-dependencies]
[project.scripts]
tinyecs-demo = 'tinyecs.demo:main'
[project.urls]
homepage = "https://github.com/dickerdackel/tinyecs"
bugtracker = "https://github.com/DickerDackel/tinyecs/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "-rA -s --cov-report term-missing -s --cov=tinyecs"
testpaths = [
"tests",
]