-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
44 lines (38 loc) · 847 Bytes
/
setup.cfg
File metadata and controls
44 lines (38 loc) · 847 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
[metadata]
name = gridrival
description = Quantitative Model for optimization of fantasy team in Grid Rival.
long_description = file: README.md
version = 1.0.0
author = Pablo Forero
author_email = gridrival@pabloforero.eu
url = https://github.com/pforero/gridrival/
[options]
package_dir=
=src
packages = find:
zip_safe = False
python_requires = >=3.7
install_requires =
pandas
include_package_data = True
[options.packages.find]
where = src
[options.extras_require]
dev =
tox
[options.entry_points]
console_scripts =
gridrival = gridrival.solve:main
[tool:isort]
known_first_party = arcus
default_section = THIRDPARTY
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[flake8]
max-line-length=88
ignore = E203, E265, W503, E266
max-complexity = 18
select = B,C,E,F,W,T4,B9