-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (57 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
65 lines (57 loc) · 1.46 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mapbox-tilesets"
version = "2.2.0"
description = "CLI for interacting with and preparing data for the Mapbox Tilesets API"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.md" }
authors = [{ name = "Mapbox", email = "maps-api-team@mapbox.com" }]
keywords = ["mapbox", "tilesets", "cli", "geojson", "vector tiles"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"click>=8.1",
"cligj>=0.7",
"requests>=2.32",
"requests-toolbelt>=1.0",
"jsonschema>=4.18,<5",
"mercantile>=1.1",
"geojson>=3.0",
"numpy>=1.23,<2",
]
[project.optional-dependencies]
estimate-area = ["supermercado>=0.2.0"]
test = [
"pre-commit>=3.5",
"pytest>=8",
"pytest-cov>=4",
]
[project.scripts]
tilesets = "mapbox_tilesets.scripts.cli:cli"
[tool.pytest.ini_options]
addopts = "-q --strict-markers --disable-warnings"
testpaths = ["tests"]
[tool.setuptools]
packages = ["mapbox_tilesets", "mapbox_tilesets.scripts"]
[dependency-groups]
dev = [
"pytest>=8",
"pytest-cov>=4",
"build>=1.2",
"pre-commit>=3.5",
"ruff>=0.14.10",
]
[tool.ruff.lint]
ignore = [
"E203", # whitespace before ':'
"E231", # missing whitespace after ',', ';', or ':'
"E501", # line too long
"E722" # bare except
]