-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (28 loc) · 950 Bytes
/
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
[build-system]
requires = [ "setuptools>=61.2", "setuptools_scm",]
build-backend = "setuptools.build_meta"
[project]
name = "glue-geospatial"
description = "Experimental glue plugin for geospatial imagery"
readme = "README.rst"
requires-python = ">=3.8"
dependencies = [ "glue-core>=1.0", "rasterio>=1.0", "pyproj>=2.3", "affine",]
dynamic = [ "version",]
[tool.setuptools_scm]
version_file = "glue_geospatial/_version.py"
[[project.authors]]
name = "Thomas Robitaille"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/glue-viz/glue-geospatial"
[project.optional-dependencies]
test = [ "pytest", "pytest-cov", "pytest-faulthandler", "mock",]
[tool.setuptools]
zip-safe = true
include-package-data = false
[project.entry-points."glue.plugins"]
glue_geospatial = "glue_geospatial:setup"
[tool.setuptools.package-data]
"glue_geospatial.tests" = [ "data/*",]
[tool.setuptools.packages.find]
namespaces = false