-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.29 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "yxr-oi-cli"
description = "Simple Online Judge Cli Tool"
dynamic = ["version"]
authors = [{ name = "YeXiaoRain", email = "yexiaorain@gmail.com" }]
dependencies = [
"requests >= 2",
"beautifulsoup4 >= 4",
"lxml >= 4",
"pycryptodome >= 3.13.0",
"click >= 8.1.3",
"rich >= 11.0.0",
"psutil",
"yxr-atcoder-core == 0.0.3.5",
"yxr-codeforces-core == 0.0.2.4",
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
keywords = ["codeforces", "atcoder", "cli", "api", "yxr"]
license = { file = "LICENSE" }
[project.urls]
"Homepage" = "https://github.com/CroMarmot/oiTerminal"
"Bug Tracker" = "https://github.com/CroMarmot/oiTerminal/issues"
[project.scripts]
oi = "oi_cli2.cli.main:main"
[project.optional-dependencies]
dev = ['build']
tests = ['build', 'coverage >= 6', 'pytest >= 7']
[tool.hatch.build]
ignore-vcs = true
include = ["oi_cli2"]
exclude = ["tests", "docs", "build", "venv"]
[tool.hatch.version]
path = "oi_cli2/__version__.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q --ignore=unused*"
testpaths = ["tests"]
[tool.yapf]
based_on_style = "pep8"
column_limit = 120
indent_width = 2