-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (35 loc) · 913 Bytes
/
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
[tool.poetry]
name = "manga-tracker"
version = "0.1.0"
description = ""
authors = ["s0hv <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.group.dev]
optional = true
[tool.poetry.dependencies]
python = "^3.10"
ansicolors = "~1.1.8"
feedparser = "~6.0.10"
requests = "^2.31.0"
lxml= "4.9.2"
cssselect = "~1.2.0"
protobuf = "4.21.12"
sentry-sdk = "1.14.0"
pydantic = "1.10.4"
ratelimit = "~2.2.1"
discord-webhook = "1.0.0"
elasticsearch = "~7.13.4"
psycopg = {version = "~3.1.8", extras = ["c", "pool"]}
[tool.poetry.group.dev.dependencies]
types-protobuf = "4.21.0.3"
types-requests = "2.28.11.8"
testing-postgresql = {git = "https://github.com/tk0miya/testing.postgresql.git", rev = "c81ded4"}
pytest-cov = "4.0.0"
pytest = "7.2.1"
responses = "0.22.0"
mypy = "0.991"
mypy-protobuf = "3.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"