forked from geomet/geomet
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.44 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
[build-system]
requires = [
"setuptools >=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "geomet"
readme = "README.md"
maintainers = [
]
description = "Pure Python conversion library for common geospatial data formats"
requires-python = ">=3.7"
keywords = [
"esri",
"ewkb",
"ewkt",
"geojson",
"geopackage",
"geospatial",
"gis",
"spatial",
"wkb",
"wkt",
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"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",
]
dependencies = [
"click",
]
dynamic = ["version"]
[project.scripts]
geomet = "geomet.tool:cli"
[project.urls]
Repository = "https://github.com/geomet/geomet"
[tool.setuptools.dynamic]
version = {attr = "geomet.__init__.__version__"}
[tool.setuptools.packages.find]
include = ["geomet", "geomet.*"]
exclude = ["geomet.tests", "geomet.tests.*"]