forked from RouNNdeL/aiesec-reception-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (39 loc) · 1 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
[metadata]
name = receptiontool
version = 0.0.1
author = Krzysztof Zdulski
author_email = krzys.zdulski@gmail.com
description = Tool for importing EP applications from AIESEC EXPA to Trello
url = https://github.com/RouNNdeL/aiesec-reception-tool
platforms = any
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.9
[options.packages.find]
include =
receptiontool*
[options.entry_points]
console_scripts =
receptiontool = receptiontool.__main__:entry_point
[flake8]
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build
max-complexity = 25
doctests = True
inline-quotes = double
# To work with Black
# E501: line too long
# W503: Line break occurred before a binary operator
# E203: Whitespace before ':'
# D202 No blank lines allowed after function docstring
# W504 line break after binary operator
ignore =
E501,
W503,
E203,
D202,
W504
noqa-require-code = True