-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.65 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
[project]
name = "tilebox-storage"
dynamic = ["version"]
description = "Storage client for Tilebox"
authors = [{ name = "Tilebox, Inc.", email = "support@tilebox.com" }]
readme = "README.md"
license = { text = "MIT License" }
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
requires-python = ">=3.10"
dependencies = [
"tilebox-datasets",
"niquests>=3.18",
"aiofile>=3.8",
"folium>=0.15",
"shapely>=2",
"obstore>=0.8.0",
"boto3>=1.37.0", # required for the obstore Boto3CredentialProvider
]
[dependency-groups]
dev = [
"hypothesis>=6.112.1",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest>=8.3.2",
"responses>=0.26.0",
]
[project.urls]
Homepage = "https://tilebox.com"
Documentation = "https://docs.tilebox.com/"
[tool.hatch.build.targets.sdist]
packages = ["tilebox"]
[tool.hatch.build.targets.wheel]
packages = ["tilebox"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
addopts = "-Wall -Werror --import-mode importlib"
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"