-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (61 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
65 lines (61 loc) · 1.72 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
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "georesolver"
version = "0.2.2"
description = "Multi-source place name to coordinates resolver using TGN, WHG, GeoNames, and Wikidata"
authors = [
{name="Jairo Antonio Melo Florez", email="jairoantoniomelo@gmail.com"}
]
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "GPL-3.0-only"}
requires-python = ">=3.9"
dependencies = [
"SPARQLWrapper~=2.0.0",
"RapidFuzz~=3.13.0",
"requests~=2.32.4",
"python-dotenv~=1.1.0",
"ratelimit~=2.2.1",
"requests-cache~=1.2.1",
"tqdm~=4.67.1",
"pandas~=2.3.0",
"pycountry~=24.6.1"
]
keywords = [
"geocoding",
"georesolver",
"geonames",
"wikidata",
"tgn",
"whg"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://github.com/jairomelo/Georesolver"
Issues = "https://github.com/jairomelo/Georesolver/issues"
Documentation = "https://jairomelo.com/Georesolver/"
[tool.setuptools.package-data]
"georesolver" = ["data/mappings/places_map.json"]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov",
"mypy",
"ruff"
]