-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
80 lines (71 loc) · 1.77 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
; See:
; https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
[metadata]
name = vshogi
version = 0.0.2
description = Shogi API for Shogi and its variants
url = https://github.com/ctgk/vshogi
author = ctgk
author_email = r1135nj54w@gmail.com
license = GPLv3
license_files = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >=3.8
install_requires =
numpy
scipy
packages = find:
package_dir =
=python
[options.packages.find]
where = python
include = vshogi*
exclude = test*
[options.extras_require]
develop =
pre-commit
pybind11
pytest
# format
flake8
flake8-absolute-import
flake8-broken-line
flake8-builtins
flake8-commas-x
flake8-docstrings
flake8-import-order
flake8-multiline-containers
flake8-mutable
pep8-naming
dlshogi =
classopt
joblib
pandas
tensorflow
tf_keras
tqdm
[flake8]
exclude =
examples/*.py
python/vshogi/__main__.py
ignore =
; Ignore "Missing docstring in magic method"
D105,
; Ignore "undefined name ..."
F821,
; Ignore "line break before binary operator"
W503
per-file-ignores =
; Ignore 'Missing docstring in public module'
setup.py:D100
; Ignore 'Missing docstring in public module' and 'variable "copyright" is shadowing a python builtin'
docs/conf.py:A001,D100
; Ignore missing docstring in public module, class, method, function, package
**/tests/*.py:D100,D101,D102,D103,D104
; Ignore Multi-line container not broken after opening character
python/vshogi/_game.py:JS101
application-import-names = vshogi
; https://github.com/PyCQA/flake8-import-order/blob/master/tests/test_cases/complete_pycharm.py
import-order-style = pycharm