-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.41 KB
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
53
54
55
56
57
58
59
60
[tool.poetry]
name = "tetris"
version = "1.0.0-alpha.0"
description = "Simple and modular tetris library"
authors = ["Sofia N. Lima <me@dzshn.xyz>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dzshn/python-tetris"
repository = "https://github.com/dzshn/python-tetris"
documentation = "https://python-tetris.readthedocs.io/"
keywords = ["tetris", "stacker"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
[tool.poetry.scripts]
tetris = "tetris.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
Sphinx = { version = ">=4.4,<6.0", optional = true }
furo = { version = "^2022.3.4", optional = true }
numpydoc = { version = "^1.2", optional = true }
[tool.poetry.dev-dependencies]
tox = "^3.25.1"
Sphinx = ">=4.4,<6.0"
furo = "^2022.3.4"
numpydoc = "^1.2"
[tool.poetry.extras]
docs = ["Sphinx", "furo", "numpydoc"]
[tool.black]
[tool.mypy]
files = [
"examples/*.py",
"tetris/*.py"
]
python_version = "3.9"
strict = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = "numpy"
ignore_missing_imports = true
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"