-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
36 lines (33 loc) · 1.23 KB
/
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
[project]
name = "fudgeo"
version = "0.8.2"
description = """\
GeoPackage support from Python. fudgeo is a lightweight package \
for creating OGC GeoPackages, Feature Classes, and Tables. Easily \
read and write geometries and attributes to Feature Classes \
and Tables using regular Python objects and SQLite syntax.\
"""
readme = "README.md"
authors = [{ name = "Integrated Informatics (USA) Inc.", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["geopackage"]
dependencies = ["numpy", "Bottleneck"]
requires-python = ">=3.9"
[tool.setuptools]
packages = ["fudgeo", "fudgeo.geometry", "fudgeo.extension"]
include-package-data = true
[project.optional-dependencies]
dev = ["pytest", "coverage", "twine", "build"]
[project.urls]
Homepage = "https://github.com/realiii/fudgeo"