-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.34 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
[build-system]
requires = ["setuptools<69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pygeometa"
version = "0.20.dev0"
description = "pygeometa is a Python package to manage metadata for geospatial dataset"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
keywords = ["geospatial", "metadata", "catalogue", "discovery"]
authors = [
{name = "Tom Kralidis", email = "tomkralidis@gmail.com"}
]
maintainers = [
{name = "Tom Kralidis", email = "tomkralidis@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS"
]
dependencies = [
"Click",
"Jinja2",
"jsonschema",
"lxml",
"OWSLib",
"pyyaml"
]
[project.optional-dependencies]
dev = ["flake8"]
docs = ["zensical"]
release = ["build", "twine", "wheel"]
[project.scripts]
pygeometa = "pygeometa:cli"
[project.urls]
homepage = "https://geopython.github.io/pygeometa"
source = "https://github.com/geopython/pygeometa"
documentation = "https://geopython.github.io/pygeometa"
issues = "https://github.com/geopython/pygeometa/issues"
[tool.setuptools.package-data]
"pygeometa" = ["schemas/**/*"]