-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (63 loc) · 1.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = [ "hatchling" ]
build-backend = "hatchling.build"
[project]
name = "yxr-atcoder-core"
description = "Simple Atcoder core api"
authors = [
{ name="YeXiaoRain", email="[email protected]" }
]
dependencies = [
"requests >= 2",
"beautifulsoup4 >= 4",
"lxml >= 4",
"types-beautifulsoup4",
"toml",
"yapf >= 0.32",
"dataclasses-json",
"sphinx >= 5",
"furo",
"myst-parser",
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
keywords = ["atcoder", "api", "yxr"]
license = { file="LICENSE" }
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/CroMarmot/yxr-atcoder-core"
"Bug Tracker" = "https://github.com/CroMarmot/yxr-atcoder-core/issues"
[project.optional-dependencies]
test = [
'build',
'coverage >= 6',
'pytest >= 7',
'mypy',
]
[tool.hatch.build]
ignore-vcs = true
include = [
"ac_core",
]
exclude = [
"tests",
"docs",
]
[tool.hatch.version]
path = "ac_core/__init__.py"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.yapf]
based_on_style = "pep8"
column_limit = 120
indent_width = 2
[tool.mypy]
strict_optional = false