-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (72 loc) · 1.65 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
77
78
79
[tool.poetry]
name = "dnsdig"
version = "0.1.0"
description = "The API for DNS lookups"
authors = ["Batista Harahap <batista@bango29.com>"]
readme = "README.md"
[tool.poetry.scripts]
dnsdigd = "dnsdig.appdnsdigd.dnsdigd:app"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.103.2"
pydantic = {extras = ["email"], version = "^2.4.2"}
dnspython = "^2.4.2"
pyhumps = "^3.8.0"
uvicorn = "^0.23.2"
beanie = "^1.22.6"
pydantic-settings = "^2.0.3"
asyncer = "^0.0.2"
aiohttp = "^3.8.6"
pyjwt = "^2.8.0"
ujson = "^5.8.0"
cryptography = "^41.0.4"
email-validator = "^2.0.0.post2"
pymongo = "^4.5.0"
aiocsv = "^1.2.4"
aiofiles = "^23.2.1"
fastapi-limiter = "^0.1.5"
async-cache = "^1.1.1"
uvloop = "^0.18.0"
asyncudp = "^0.11.0"
typer = "^0.9.0"
rich = "^13.6.0"
sentry-sdk = {extras = ["fastapi"], version = "^1.32.0"}
pyfunctional = "^1.4.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-asyncio = "^0.21.1"
black = "^23.9.1"
faker = "^19.10.0"
pytest-env = "^1.0.1"
httpx = "^0.25.0"
pytest-cov = "^4.1.0"
typer = "^0.9.0"
rich = "^13.6.0"
pytest-xdist = "^3.3.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = {extras = ["all"], version = "^9.4.7"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py311"]
skip-string-normalization = true
skip-magic-trailing-comma = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/
'''