forked from online-judge-tools/oj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (57 loc) · 1.26 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
[metadata]
long_description = file: readme.md
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Internet :: WWW/HTTP
Topic :: Software Development
Topic :: Text Processing :: Markup :: HTML
Topic :: Utilities
[options]
install_requires =
appdirs >= 1
beautifulsoup4 >= 4
colorama >= 0.3
lxml >= 4
requests >= 2
sympy >= 1.1
scripts =
oj
packages = find:
[options.packages.find]
exclude =
tests
docs
[options.extras_require]
dev =
isort >= 4.3.4
mypy >= 0.660
yapf >= 0.25.0
docs =
sphinx >= 1.8
sphinx-autodoc-typehints >= 1.6
sphinx_rtd_theme >= 0.2.4
[yapf]
column_limit = 9999
[isort]
line_length = 9999
default_section = THIRDPARTY
known_first_party = onlinejudge
[mypy]
[mypy-appdirs.*]
ignore_missing_imports = True
[mypy-bs4.*]
ignore_missing_imports = True
[mypy-colorama.*]
ignore_missing_imports = True
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-sympy.*]
ignore_missing_imports = True
[mypy-typing.io.*]
ignore_missing_imports = True