forked from realiii/fudgeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 1015 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
[project]
name = "fudgeo"
version = "0.2.1"
description = """\
GeoPackage support from Python. fudgeo is a simple package \
for creating OGC GeoPackages, Feature Classes, Tables, and \
geometries (read and write).\
"""
readme = "README.md"
authors = [{ name = "Integrated Informatics Inc.", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["geopackage"]
dependencies = []
requires-python = ">=3.7"
[tool.setuptools]
include-package-data = true
[project.optional-dependencies]
dev = ["pytest", "coverage", "twine", "build"]
[project.urls]
Homepage = "https://github.com/realiii/fudgeo"