File: pyproject.toml

package info (click to toggle)
python-contextily 1.5.2%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 944 kB
  • sloc: python: 1,092; makefile: 41
file content (47 lines) | stat: -rw-r--r-- 990 bytes parent folder | download | duplicates (2)
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/*"]