-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (46 loc) · 1.09 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
[metadata]
name = smawg
version = 0.23.0
author = Dmitrii Aleksandrov
author_email = [email protected]
description = Backend engine for Small World board game
long_description = file: README.md
long_description_content_type = text/markdown
license = GPLv3
license_file = LICENSE
url = https://github.com/Expurple/smawg
[options]
include_package_data = true
install_requires =
graphviz
pydantic == 2.*
tabulate
packages = find:
python_requires = >=3.11
[options.package_data]
smawg =
assets/*.json
py.typed
[options.packages.find]
exclude =
smawg.tests
[options.extras_require]
dev =
flake8
flake8-docstrings
flake8-quotes
mypy==1.6.1
types-tabulate
[flake8]
# Prefer " over ' (""" is preferred over ''' by default).
inline-quotes = double
ignore =
# "First line should be in imperative mood; try rephrasing"
# is annoying, especially with properties.
# Maybe https://github.com/PyCQA/pydocstyle/issues/566 will fix this later.
D401
# https://github.com/PyCQA/flake8/issues/1094
W503
require-plugins =
flake8-docstrings
flake8_quotes