-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (45 loc) · 1.03 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
[metadata]
name = pcm
author = kjnh10
author_email = [email protected]
description = tiny programing contest manager
url = https://github.com/kjnh10/pcm
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
setup_requires = setuptools_scm
install_requires =
Click>=7.0
online-judge-tools>=9.0.0
online-judge-verify-helper
toml
pyside2
pyperclip
include_package_data = True
python_requires = >=3.6
[options.extras_require]
dev =
isort == 5.5.2
mypy == 0.782
pylint == 2.6.0
yapf == 0.30.0
[yapf]
column_limit = 9999
[isort]
line_length = 9999
default_section = THIRDPARTY
known_first_party = onlinejudge
[mypy]
[mypy-*.*]
ignore_missing_imports = True
[options.entry_points]
console_scripts =
pcm=pcm.__main__:cli
pcm-cc=pcm.cc_server.__main__:main