-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
64 lines (53 loc) · 1019 Bytes
/
Copy pathsetup.cfg
File metadata and controls
64 lines (53 loc) · 1019 Bytes
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
[metadata]
name = pygame-chess
description = chess in pygame
author = Nicolas Parucker
license = MIT
license_file = LICENSE
[options]
packages =
chess
chess.asset
chess.board
chess.bot
chess.game
chess.timer
config
database
event
gui
launcher
launcher.pg
launcher.tk
network
network.client
network.server
install_requires =
PyChessEngine @ git+https://github.com/NicolasPP/ChessEngine.git@c86a22bf80672d83a1c77e1926bbd9956736b7a9
click
pygame
package_dir =
=src
zip_safe = no
[options.package_data]
chess = py.typed
chess.asset = py.typed
chess.board = py.typed
chess.bot = py.typed
chess.game = py.typed
chess.timer = py.typed
config = py.typed
database = py.typed
event = py.typed
gui = py.typed
launcher = py.typed
launcher.pg = py.typed
launcher.tk = py.typed
network = py.typed
network.client = py.typed
network.server = py.typed
[flake8]
max-line-length = 160
[mypy]
ignore_missing_imports = True
check_untyped_defs = True