-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (48 loc) · 1.16 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
46
47
48
49
50
51
52
[tool.poetry]
name = "enpyre"
version = "0.0.6"
description = "A Python game engine for the browser"
authors = ["Lucas Amoedo <[email protected]>", "Vitor Nere <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
homepage = "https://github.com/Enpyre/engine"
repository = "https://github.com/Enpyre/engine"
keywords = ["game", "engine", "python", "browser"]
packages = [{include = "enpyre", from = "src"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Education",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: Education",
"Topic :: Games/Entertainment"
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
aiohttp = "^3.8.1"
aiohttp_cors = "^0.7.0"
watchfiles = "^0.14.1"
mypy = "^0.961"
flake8 = "^4.0.1"
pre-commit = "^2.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''