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
|
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "contextily"
dynamic = ["version"]
authors = [
{name = "Dani Arribas-Bel", email = "daniel.arribas.bel@gmail.com"},
]
maintainers = [
{name = "contextily contributors"},
]
license = {text = "3-Clause BSD"}
description = "Context geo-tiles in Python"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Framework :: Matplotlib",
]
requires-python = ">=3.8"
dependencies = [
"geopy",
"matplotlib",
"mercantile",
"pillow",
"rasterio",
"requests",
"joblib",
"xyzservices"
]
[project.urls]
Home = "https://github.com/geopandas/contextily"
Repository = "https://github.com/geopandas/contextily"
[tool.setuptools.packages.find]
include = [
"contextily",
"contextily.*",
]
[tool.coverage.run]
omit = ["tests/*"]
|