-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.62 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "spatial-join-lab"
version = "0.1.0"
description = "Interactive Streamlit lab for buffers, spatial joins and nearest-neighbor queries on your own spatial data."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "python-geospatial.com", email = "info@python-geospatial.com" }]
keywords = ["geospatial", "gis", "geopandas", "spatial-join", "streamlit", "buffer", "nearest-neighbor"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"streamlit>=1.30",
"geopandas>=0.14",
"shapely>=2.0",
"pyproj>=3.5",
"folium>=0.15",
"pyarrow>=14",
]
[project.optional-dependencies]
dev = ["pytest>=7.4", "ruff>=0.4"]
[project.urls]
Homepage = "https://python-geospatial.com"
Source = "https://github.com/python-geospatial/spatial-join-lab"
[project.scripts]
spatial-join-lab = "spatial_join_lab.cli:main"
[tool.hatch.build.targets.wheel]
# app.py lives inside the package, so it ships automatically with the wheel.
packages = ["src/spatial_join_lab"]
[tool.hatch.build.targets.sdist]
include = ["src/spatial_join_lab", "tests", "README.md", "LICENSE"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B"]
[tool.pytest.ini_options]
testpaths = ["tests"]