-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.27 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tilematrix"
dynamic = ["version"]
description = "helps handling tile pyramids"
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Joachim Ungar", email = "joachim.ungar@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"affine",
"click",
"geojson",
"rasterio>=1.0.21",
"shapely",
]
[project.scripts]
tmx = "tilematrix.tmx.main:tmx"
[project.urls]
Homepage = "https://github.com/ungarj/tilematrix"
[project.optional-dependencies]
test = [
"black",
"coveralls",
"flake8",
"pre-commit",
"pytest",
"pytest-cov"
]
[tool.hatch.version]
path = "tilematrix/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/tilematrix",
]
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''