-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (34 loc) · 958 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
[build-system]
requires = ["setuptools>=70.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tibia-maps"
requires-python = ">=3"
authors = [
{ name = "Krishant Timilsina", email = "[email protected]" },
]
description = "Floor map data for Tibia"
readme = "README.md"
license = { file = "LICENSE" }
keywords = []
classifiers = ["Programming Language :: Python :: 3"]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/krishantt/tibia-maps"
Issues = "https://github.com/krishantt/tibia-maps/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-dir]
"tibia_maps" = "tibia_maps"
[tool.setuptools.dynamic]
version = { attr = "tibia_maps.__version__" }
dependencies = { file = "requirements.txt" }
[tool.isort]
line_length = 79
force_single_line = true
[tool.black]
line-length = 79
preview = true
[tool.pyright]
include = ["tibia_maps", "test.py"]
typeCheckingMode = "strict"