-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (45 loc) · 969 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
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "tower"
version = "0.1.0"
description = "Lets build a... tower?"
authors = [
{ name = "Bradley Reynolds", email = "[email protected]" },
]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"arcade==2.6.17",
]
[project.urls]
repository = "https://github.com/letsbuilda/tower/"
documentation = "https://docs.letsbuilda.dev/tower/"
[project.optional-dependencies]
dev = [
"black",
"isort",
"pylint",
]
tests = [
"pytest",
]
docs = [
"sphinx",
"furo",
"sphinx-autoapi",
"releases",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
tower = ["**/*.png", "**/*.tmx", "**/*.tsx"]
[tool.black]
target-version = ["py310"]
line-length = 120
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = "tests -r a -v --doctest-modules src"
[tool.pylint.format]
max-line-length = 120