-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (49 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
59 lines (49 loc) · 1.17 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
58
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "ovc"
version = "3.2.0"
description = "Quality control platform for detecting geometric and topological issues in geospatial building and road datasets"
requires-python = ">=3.10"
authors = [
{ name = "Ammar Yasser Abdalazim" }
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"GIS",
"OpenStreetMap",
"Quality Control",
"Geospatial",
"Buildings"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"geopandas>=0.14,<1.0",
"shapely>=2.0,<3.0",
"pyproj>=3.6,<4.0",
"pandas>=2.0,<3.0",
"folium>=0.15,<1.0",
"fiona>=1.9,<2.0",
"rtree>=1.1,<2.0",
"geoqa",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"pre-commit>=3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.setuptools.packages.find]
include = ["ovc*"]