forked from developmentseed/rio-viz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (68 loc) · 1.6 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
[project]
name = "rio-viz"
description = "Visualize Cloud Optimized GeoTIFF in browser"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "Vincent Sarago", email = "[email protected]"},
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
]
dynamic = ["version"]
dependencies = [
"braceexpand",
"rio-cogeo>=3.1",
"titiler.core>=0.5,<0.8",
"starlette-cramjam>=0.3,<0.4",
"uvicorn",
"server-thread>=0.2.0",
]
[project.optional-dependencies]
mvt = [
"rio-tiler-mvt>=0.1,<0.2",
]
test = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"requests",
]
dev = [
"pre-commit",
]
[project.urls]
Source = "https://github.com/developmentseed/rio-viz"
[project.entry-points."rasterio.rio_plugins"]
viz = "rio_viz.scripts.cli:viz"
[build-system]
requires = ["flit>=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "rio_viz"
[tool.flit.sdist]
exclude = [
"tests/",
"docs/",
".github/",
"CHANGES.md",
"CONTRIBUTING.md",
]
[tool.isort]
profile = "black"
known_first_party = ["rio_viz"]
known_third_party = ["rasterio", "rio_tiler", "morecantile", "titiler"]
forced_separate = ["titiler"]
default_section = "THIRDPARTY"
[tool.mypy]
no_strict_optional = "True"
[tool.pydocstyle]
select = "D1"
match = "(?!test).*.py"