-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (61 loc) · 1.58 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
72
73
74
75
76
[tool.poetry]
name = "tylisten"
version = "2.2.0"
description = "A tiny hook specification library with typing support."
authors = ["JamzumSum <22952836+JamzumSum@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/JamzumSum/tylisten"
repository = "https://github.com/JamzumSum/tylisten"
documentation = "https://jamzumsum.github.io/tylisten"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/JamzumSum/tylisten/issues"
[tool.poetry.dependencies]
python = "^3.9"
typing_extensions = ">=4.6.0"
# dependency groups
[tool.poetry.group.test]
optional = false
[tool.poetry.group.test.dependencies]
pytest = "^8.2"
pytest-asyncio = "~0.25.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
black = "*"
isort = ">5.13.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^7.0.1"
sphinx-autodoc-typehints = "*"
furo = "*"
sphinx-intl = "*"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# customize begin
[tool.pytest.ini_options]
pythonpath = 'src'
log_cli = 1
log_cli_level = 'WARNING'
[tool.isort]
profile = "black"
line_length = 99
[tool.black]
line-length = 99
target-version = ['py39']
[tool.pyright]
pythonVersion = "3.9"
pythonPlatform = "All"