-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.28 KB
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
[tool.isort]
profile = 'black'
skip = ['env','env3.8','openly','simple_locations', 'typings']
[tool.black]
line-length = 180
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.mypy_cache
| \.tox
| migrations
)\
'''
[tool.poetry]
name = "djangostreetmap"
version = "0.2.8"
description = "Deliver OpenstreetMap data in GeoJSON and MVT tile formats"
authors = ["Joshua Brooks <josh.vdbroek@gmail.com>"]
license = "LGPL-3.0-or-later"
homepage = "https://github.com/joshbrooks/djangostreetmap"
readme = "README.md"
packages = [
{ include = "djangostreetmap" },
{ include = "maplibre" }
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
osmflex = "^0.2.0"
pydantic = "^1.10.0"
typer = "^0.4.1"
[tool.poetry.group.dev.dependencies]
Django = "*"
black = "*"
mypy = "*"
isort = "*"
pre-commit = "*"
django-stubs = "*"
types-psycopg2 = "*"
pytest = "*"
requests = "*"
django-cors-headers = "*"
mypy-extensions = "*"
pytest-django = "*"
psycopg2-binary = "*"
gunicorn = "*"
flake8 = "*"
django-extensions = "*"
coverage = "*"
pytest-cov = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["mypy_django_plugin.main"]
ignore_missing_imports = true
[tool.django-stubs]
django_settings_module = "tests.test_settings"