-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (41 loc) · 1.22 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
44
45
[tool.poetry]
name = "pyecs"
version = "0.19"
description = "A simple implementation of the Entity-Component pattern."
authors = ["Tim Fischer <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/timfi/pyecs"
repository = "https://github.com/timfi/pyecs"
license = "MIT"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Typing :: Typed",
]
packages = [{ include = "pyecs" }]
include = ["py.typed", "*.pyi"]
[tool.poetry.dependencies]
python = "^3.8"
pyyaml = { version = "^5.4.1", optional = true }
[tool.poetry.extras]
yaml = ["pyyaml"]
[tool.poetry.dev-dependencies]
black = "^20.8b1"
isort = "^5.8.0"
mypy = "^0.812"
pre-commit = "^2.12.0"
pytest = "^6.2.3"
pytest-cov = "^2.11.1"
codecov = "^2.1.11"
pydocstyle = "^6.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"