-
Notifications
You must be signed in to change notification settings - Fork 203
/
pyproject.toml
68 lines (61 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools>=67.8", "cython~=3.0.2"]
build-backend = "setuptools.build_meta"
[project]
name = "fiona"
dynamic = ["readme", "version"]
authors = [
{name = "Sean Gillies"},
]
maintainers = [
{name = "Fiona contributors"},
]
description = "Fiona reads and writes spatial data files"
keywords = ["gis", "vector", "feature", "data"]
license = {text = "BSD 3-Clause"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.8"
dependencies = [
"attrs>=19.2.0",
"certifi",
"click~=8.0",
"click-plugins>=1.0",
"cligj>=0.5",
'importlib-metadata;python_version<"3.10"',
]
[project.optional-dependencies]
all = ["fiona[calc,s3,test]"]
calc = ["pyparsing", "shapely"]
s3 = ["boto3>=1.3.1"]
test = [
"aiohttp",
"fsspec",
"fiona[s3]",
"pytest>=7",
"pytest-cov",
"pytz",
]
[project.scripts]
fio = "fiona.fio.main:main_group"
[project.urls]
Documentation = "https://fiona.readthedocs.io/"
Repository = "https://github.com/Toblerity/Fiona"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "fiona.__version__"}
readme = {file = ["README.rst", "CHANGES.txt", "CREDITS.txt"]}
[tool.setuptools.packages.find]
include = ["fiona", "fiona.*"]