-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1021 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
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "geocoding-service"
version = "0.1.0"
description = "Geocoding as a service"
authors = [{ name = "Togglecorp Dev" }]
requires-python = "~=3.10"
license = "MIT"
dependencies = [
"fiona>=1.10.1,<2",
"fastapi>=0.115.8,<0.116",
"requests>=2.32.3,<3",
"uvicorn>=0.34.0,<0.35",
"APScheduler==3.11.0",
"pydantic-settings>=2.8.1",
"pydantic>=2.10.6",
"shapely>=2.0.7",
]
[dependency-groups]
dev = [
"ipython",
"mypy>=0.990,<0.991",
"django-stubs>=1.13.0,<2",
"flake8>=5.0.4,<6",
]
[tool.ruff]
line-length = 130
extend-exclude = [
".git",
".pytest_cache",
".venv",
"venv",
"**/migrations/*",
"__pycache__",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["C901", "E701", "E203"]
extend-select = ["I", "E", "F", "W"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]
[tool.pyright]
exclude = [
"**/__pycache__",
".venv/",
]
reportMissingImports = true
reportMissingTypeStubs = false
venvPath = "."
venv = ".venv"