-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
83 lines (75 loc) · 1.99 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
80
81
82
83
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = "localtileserver"
version = "0.10.5"
description = "Locally serve geospatial raster tiles in the Slippy Map standard."
readme = "README.md"
authors = [
{name = "Bane Sullivan", email = "hello@banesullivan.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = '>=3.8'
dependencies = [
"click",
"flask>=2.0.0,<4",
"Flask-Caching",
"flask-cors",
"flask-restx>=1.3.0",
"rio-tiler",
"rio-cogeo",
"requests",
"server-thread",
"scooby",
"werkzeug",
]
[project.optional-dependencies]
colormaps = [
"matplotlib",
"cmocean",
"colorcet",
]
jupyter = [
"jupyter-server-proxy",
"ipyleaflet",
]
helpers = [
"shapely",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = [
'localtileserver',
'localtileserver.*',
]
[project.urls]
Documentation = 'https://localtileserver.banesullivan.com'
"Bug Tracker" = 'https://github.com/banesullivan/localtileserver/issues'
"Source Code" = 'https://github.com/banesullivan/localtileserver'
[project.scripts]
localtileserver = "localtileserver.__main__:run_app"
[tool.black]
line-length = 100
skip-string-normalization = false
target-version = ["py38"]
exclude='\.eggs|\.git|\.mypy_cache|\.tox|\.venv|_build|buck-out|build|dist|node_modules'
[tool.isort]
profile = "black"
line_length = 100
# Sort by name, don't cluster "from" vs "import"
force_sort_within_sections = true
# Combines "as" imports on the same line
combine_as_imports = true