-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
96 lines (83 loc) · 2.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "pytiled_parser"
version = "2.2.7"
description = "A library for parsing Tiled Map Editor maps and tilesets"
readme = "README.md"
authors = [
{name="Benjamin Kirkbride", email="[email protected]"},
{name="Darren Eberly", email="[email protected]"},
]
maintainers = [
{name="Darren Eberly", email="[email protected]"}
]
license = {file = "LICENSE"}
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"attrs >= 18.2.0",
"typing-extensions"
]
[project.urls]
homepage = "https://github.com/pythonarcade/pytiled_parser"
[project.optional-dependencies]
zstd = [
"zstd"
]
dev = [
"pytest",
"pytest-cov",
"black",
"ruff",
"mypy",
"sphinx",
"sphinx-sitemap",
"myst-parser",
"furo"
]
tests = [
"pytest",
"pytest-cov",
"black",
"ruff",
"mypy"
]
build = [
"build"
]
[tool.setuptools.packages.find]
include = ["pytiled_parser", "pytiled_parser.*"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
[tool.mypy]
python_version = 3.11
warn_unused_configs = true
warn_redundant_casts = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytiled_parser.tests.*"
ignore_errors = true
[tool.ruff]
exclude = ["__init__.py"]
ignore = ["E501"]