-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (39 loc) · 1.02 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
[metadata]
name = Maze_solver
version = file: version.txt
author = Fadi Asfour
author-email = fadi.asfour@gmail.com
home-page = https://github.com/asfourco/maze_solver
description = Maze solver routine
long-description = file: README.md
long_description_content_type = text/markdown
keywords = Python, solver, Dijkstra
license = MIT
license-file = LICENSE
classifiers =
Development Status :: 1 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
project_urls =
Bug Tracker = https://github.com/asfourco/maze_solver/issues
[flake8]
ignore =
# E203: whitespace before ':' -- not PEP8 compliant
E203
# E501: line too long error
E501,
# W503: line break before binary operator -- not PEP8 compliant
W503,
# F401: import not used -- temporary disable for development
F401
exclude =
.git,
__pycache__,
build,
dist,
.venv,
.env
max-complexity = 10