-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
91 lines (82 loc) · 2.29 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
[metadata]
name = ap_games
version = 0.0.2
description = Games Tic-Tac-Toe and Reversi with CLI.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/aplatkouski/ap-games
author = Artsiom Platkouski
author_email = [email protected]
license = MIT
license_file = LICENSE.txt
license_files = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Topic :: Games/Entertainment :: Board Games
Topic :: Software Development :: Libraries :: Python Modules
keywords = board game, console game, tic-tac-toe, reversi
project_urls =
Bug Reports=https://github.com/aplatkouski/ap-games/issues
Source=https://github.com/aplatkouski/ap-games
[options]
packages =
find:
python_requires = >=3.8, <4
include_package_data = True
package_dir =
=src
zip_safe = False
[options.entry_points]
console_scripts =
ap_games = ap_games.cli:main
[options.package_data]
ap_games =
py.typed
game =
py.typed
gameboard =
py.typed
player =
py.typed
[options.packages.find]
where = src
[bdist_wheel]
universal = True
[mypy]
mypy_path = src,tests,scripts
# Specify the target platform details in config, so your developers are
# free to run mypy on Windows, Linux, or macOS and get consistent
# results.
python_version = 3.8
platform = linux
# flake8-mypy expects the two following for sensible formatting
show_column_numbers = True
show_error_context = False
follow_imports = normal
check_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_calls = True
disallow_untyped_defs = True
strict_optional = True
no_implicit_optional = True
# ensure all execution paths are returning
warn_no_return = True
warn_redundant_casts = True
warn_return_any = True
warn_unused_configs = True
warn_unused_ignores = True
implicit_reexport = True
[mypy-tests.*]
warn_no_return = False
allow_untyped_decorators = True