forked from cogeotiff/rio-cogeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (71 loc) · 1.7 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
[project]
name = "rio-cogeo"
description = "Cloud Optimized GeoTIFF (COGEO) creation plugin for rasterio"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE"}
authors = [
{name = "Vincent Sarago", email = "[email protected]"},
]
keywords = ["COGEO", "CloudOptimized Geotiff", "rasterio"]
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 = [
"click>=7.0",
"rasterio>=1.1",
"numpy~=1.15",
"morecantile>=3.1,<4.0",
"pydantic",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"cogdumper",
]
dev = [
"pre-commit",
]
docs = [
"mkdocs",
"mkdocs-material",
]
[project.urls]
Source = "https://github.com/cogeotiff/rio-cogeo"
Documentation = "https://cogeotiff.github.io/rio-cogeo/"
[project.entry-points."rasterio.rio_plugins"]
cogeo = "rio_cogeo.scripts.cli:cogeo"
[build-system]
requires = ["flit>=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.module]
name = "rio_cogeo"
[tool.flit.sdist]
exclude = [
"tests/",
"docs/",
".github/",
"CHANGES.md",
"codecov.yml",
"CONTRIBUTING.md",
"mkdocs.yml",
]
[tool.isort]
profile = "black"
known_first_party = ["rio_cogeo"]
known_third_party = ["rasterio", "morecantile", "click"]
default_section = "THIRDPARTY"
[tool.mypy]
no_strict_optional = "True"
ignore_missing_imports = "True"
[tool.pydocstyle]
select = "D1"
match = "(?!test).*.py"