-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1023 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
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "plot-finder"
version = "0.9.0"
description = "Query Polish ULDK (GUGiK) API to find land parcels by TERYT ID or coordinates"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Ernest Ilchenko" },
]
keywords = ["uldk", "gugik", "parcel", "plot", "geodesy", "poland", "teryt"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.0",
"httpx>=0.24",
"shapely>=2.0",
"pyproj>=3.6",
"astral>=3.2",
]
[project.optional-dependencies]
viz = ["folium>=0.14", "Pillow>=9.0"]
ai = ["openai>=1.0"]
geo = ["beautifulsoup4>=4.12"]
[project.scripts]
plot-finder = "plot_finder.__main__:main"
[tool.setuptools.packages.find]
include = ["plot_finder*"]
[project.urls]
Homepage = "https://github.com/ernestilchenko/plot-finder"
Documentation = "https://ernestilchenko.github.io/plot-finder/"