-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (44 loc) · 1.13 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
[tool.poetry]
name = "qzemoji"
version = "6.0.4"
description = "Translate Qzone emoji link to text."
authors = ["aioqzone <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/aioqzone/QzEmoji"
repository = "https://github.com/aioqzone/QzEmoji"
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = "^3.10"
aiofiles = "^24.1"
SQLAlchemy = { version = "^2.0", extras = ["asyncio", "aiosqlite"] }
PyYAML = "^6.0"
[tool.poetry.group.test]
optional = false
[tool.poetry.group.test.dependencies]
pytest = "^7.2.2"
pytest-asyncio = ">=0.21,<0.24,!=0.22.*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "*"
pre-commit = "*"
isort = "!=5.13.0"
[[tool.poetry.source]]
name = "aioqzone-index"
url = "https://aioqzone.github.io/aioqzone-index/simple/"
priority = "supplemental"
[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 = ['py38']