-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 972 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 972 Bytes
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
[tool.poetry]
name = "whatismyip"
version = "0.2.0"
description = ""
authors = ["1kko <me@1kko.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = {extras = ["all"], version = "^0.136.0"}
python-whois = "^0.9.4"
geoip2fast = "^1.2.2"
apscheduler = "^3.10.4"
tld = "^0.13"
requests = "^2.32.3"
python-dotenv = "^1.2.2"
opentelemetry-distro = ">=0.50b0,<1.0"
opentelemetry-exporter-otlp = ">=1.29,<2.0"
opentelemetry-instrumentation-fastapi = ">=0.50b0,<1.0"
opentelemetry-instrumentation-requests = ">=0.50b0,<1.0"
opentelemetry-instrumentation-logging = ">=0.50b0,<1.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.11"
pytest = "^9.0.0"
pip-audit = "^2.7.0"
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.ruff.lint]
select = ["E", "F", "S"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["S101", "S108"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"