-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 984 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 984 Bytes
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
[project]
name = "pygeopkg"
version = "0.1.3"
description = """\
A Python library that allows for the creation and population \
of OGC GeoPackage databases with write access.\
"""
readme = "README.md"
authors = [{ name = "Integrated Informatics Inc.", email = "contact@integrated-informatics.com" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["geopackage"]
[tool.setuptools]
packages = ["pygeopkg", "pygeopkg.conversion", "pygeopkg.core", "pygeopkg.resources", "pygeopkg.shared"]
include-package-data = true
[project.optional-dependencies]
dev = ["pytest", "coverage", "twine", "build"]
[project.urls]
Homepage = "https://github.com/realiii/pygeopkg"