-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
62 lines (49 loc) · 1.17 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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Code Generators
Topic :: Utilities
[options.extras_require]
dev =
isort == 5.5.2
mypy == 0.782
pylint == 2.6.0
yapf == 0.30.0
doc =
sphinx >= 2.4
sphinx-rtd-theme >= 0.4
[yapf]
column_limit = 9999
[isort]
line_length = 9999
default_section = THIRDPARTY
known_first_party = onlinejudge
[pylint]
# run: pylint --rcfile=setup.cfg modules_or_packages
disable = all
enable = unused-import
[mypy]
[mypy-appdirs.*]
ignore_missing_imports = True
[mypy-bs4.*]
ignore_missing_imports = True
[mypy-colorlog.*]
ignore_missing_imports = True
[mypy-mako.*]
ignore_missing_imports = True
[mypy-onlinejudge.*]
ignore_missing_imports = True
[mypy-ply.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-sympy.*]
ignore_missing_imports = True