-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (77 loc) · 2.36 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (77 loc) · 2.36 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "geograpy3"
description = "Extract countries, regions and cities from a URL or text"
keywords = [ "geography", "locations", "extraction", "text analysis"]
home-page = "https://github.com/somnathrakshit/geograpy3"
readme = "README.md"
license = {text = "Apache-2.0"}
authors = [
{name = "Somnath Rakshit", email = "somnath52@gmail.com"}
]
maintainers = [
{ name = "Somnath Rakshit", email = "somnath52@gmail.com"},
{ name = "Wolfgang Fahl", email = "wf@bitplan.com" },
{ name = "Tim Holzheim", email = "tim.holzheim@rwth-aachen.de" }
]
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
dependencies = [
# https://pypi.org/project/newspaper4k/
"newspaper4k>=0.9.3.1",
"lxml[html_clean]", # Fix for lxml.html.clean ImportError
# https://pypi.org/project/nltk/
"nltk>=3.9.1",
# https://pypi.org/project/jellyfish/
"jellyfish>=1.0.3",
# https://pypi.org/project/numpy/
"numpy>=1.26.4",
# https://pypi.org/project/pyLodStorage/
"pylodstorage>=0.17.5",
# https://pypi.org/project/sphinx-rtd-theme/
"sphinx-rtd-theme>=2.0.0",
# https://github.com/scikit-learn/scikit-learn
"scikit-learn>=1.4.1",
# https://pypi.org/project/pandas/
"pandas>=2.1.5",
# https://pypi.org/project/geopy/
"geopy>=2.4.1",
# https://pypi.org/project/OSMPythonTools/
"OSMPythonTools>=0.3.5",
# https://github.com/WolfgangFahl/pylodentitymanager
# https://pypi.org/project/pylodentitymanager/
"pylodentitymanager>=0.17.0"
]
requires-python = ">=3.10"
dynamic = ["version"]
[tool.hatch.version]
path = "geograpy/__init__.py"
[project.urls]
Homepage = "https://github.com/somnathrakshit/geograpy3"
Documentation = "https://geograpy3.readthedocs.io"
Source = "https://github.com/somnathrakshit/geograpy3"
Issues = "https://github.com/somnathrakshit/geograpy3/issues"
[tool.hatch.build.targets.wheel]
only-include = ["geograpy"]
[tool.hatch.build.targets.wheel.sources]
"geograpy" = "geograpy"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-rtd-theme",
]
test = [
"pytest",
"coverage",
]
[project.scripts]
geograpy = "geograpy.locator:main"
geograpy-nltk = "geograpy.extraction:main"
[project.data-files."geograpy/data"]
include = ["*.csv"]