forked from pythonarcade/pytiled_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
110 lines (92 loc) · 2.13 KB
/
setup.cfg
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[metadata]
name = pytiled_parser
description = A library for parsing JSON formatted Tiled Map Editor maps and tilesets.
long_description = file: README.md
author = Benjamin Kirkbride
author-email = BenjaminKirkbride@gmail.com
license = MIT
license-file = LICENSE
url = https://github.com/Beefy-Swain/pytiled_parser
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 :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
include_package_data = True
python_requires = >=3.6
setup_requires =
setuptools >= 40.6
pip >= 10
install_requires =
attrs >= 18.2.0
typing-extensions
[options.packages.find]
include =
pytiled_parser
pytiled_parser.*
[options.extras_require]
zstd =
zstd == 1.4.8.1
tests =
pytest
pytest-cov
black
flake8
mypy
isort<5,>=4.2.5
build =
pep517
docs =
sphinx
sphinx_rtd_theme
[build_sphinx]
source-dir = docs
build-dir = docs/build
all_files = 1
[upload-sphinx]
upload-dir = docs/build/html
[bdist_wheel]
universal=0
[coverage:run]
branch = True
[coverage:report]
show_missing = True
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
# Global options:
[mypy]
python_version = 3.6
warn_unused_configs = True
warn_redundant_casts = True
# Per-module options:
[mypy-pytiled_parser.*]
disallow_any_unimported = True
disallow_any_decorated = True
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
warn_return_any = True
warn_unused_ignores = True
no_implicit_optional = True
strict_optional = True
[mypy-tests.*]
ignore_errors = True
[flake8]
max-line-length = 88
exclude = .git,__pycache__,__init__.py,.mypy_cache,.pytest_cache