jageocoder 2.1.8__tar.gz → 2.1.9.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/PKG-INFO +3 -3
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/__init__.py +1 -1
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/itaiji.py +1 -1
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/pyproject.toml +4 -3
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/LICENSE +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/README.md +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/__main__.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/address.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/aza_master.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/dataset.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/exceptions.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/itaiji_dic.json +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/module.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/node.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/remote.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/result.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/rtree.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/strlib.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/tree.py +0 -0
- {jageocoder-2.1.8 → jageocoder-2.1.9.dev2}/jageocoder/trie.py +0 -0
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jageocoder
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.9.dev2
|
|
4
4
|
Summary: A Japanese-address geocoder for Python.
|
|
5
5
|
Home-page: https://github.com/t-sagara/jageocoder/
|
|
6
6
|
License: The MIT License
|
|
7
7
|
Author: Takeshi Sagara
|
|
8
8
|
Author-email: sagara@info-proto.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.9,<3.13
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: License :: Other/Proprietary License
|
|
12
12
|
Classifier: Operating System :: MacOS
|
|
13
13
|
Classifier: Operating System :: Microsoft :: Windows :: Windows 11
|
|
14
14
|
Classifier: Operating System :: POSIX :: Linux
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,6 +26,7 @@ Requires-Dist: idna (>=3.7)
|
|
|
27
26
|
Requires-Dist: jaconv (>=0.3.4,<0.4.0)
|
|
28
27
|
Requires-Dist: portabletab (>=0.3.3)
|
|
29
28
|
Requires-Dist: pycapnp
|
|
29
|
+
Requires-Dist: requests
|
|
30
30
|
Requires-Dist: rtree (>=1.0.0,<2.0.0)
|
|
31
31
|
Requires-Dist: tqdm (>=4.00.0,<5.0.0)
|
|
32
32
|
Project-URL: Documentation, https://jageocoder.readthedocs.io/
|
|
@@ -19,7 +19,7 @@ running the following steps.
|
|
|
19
19
|
>>> jageocoder.searchNode('<Japanese-address>')
|
|
20
20
|
"""
|
|
21
21
|
|
|
22
|
-
__version__ = '2.1.
|
|
22
|
+
__version__ = '2.1.9.dev2' # The package version
|
|
23
23
|
__dictionary_version__ = '20230927' # Compatible dictionary version
|
|
24
24
|
__author__ = 'Takeshi Sagara <sagara@info-proto.com>'
|
|
25
25
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "jageocoder"
|
|
3
|
-
version = "2.1.
|
|
3
|
+
version = "2.1.9.dev2"
|
|
4
4
|
description = "A Japanese-address geocoder for Python."
|
|
5
5
|
authors = ["Takeshi Sagara <sagara@info-proto.com>"]
|
|
6
6
|
repository = "https://github.com/t-sagara/jageocoder/"
|
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
|
20
20
|
include = ["itaiji_dic.json", "islands.json"]
|
|
21
21
|
|
|
22
22
|
[tool.poetry.dependencies]
|
|
23
|
-
python = ">=3.
|
|
23
|
+
python = ">=3.9,<3.13"
|
|
24
24
|
certifi = ">=2024.07.04"
|
|
25
25
|
cryptography = ">=43.0.1"
|
|
26
26
|
deprecated = "^1.2.13"
|
|
@@ -30,12 +30,13 @@ idna = ">=3.7"
|
|
|
30
30
|
jaconv = "^0.3.4"
|
|
31
31
|
pycapnp = "*"
|
|
32
32
|
portabletab = ">=0.3.3"
|
|
33
|
+
requests = "*"
|
|
33
34
|
rtree = "^1.0.0"
|
|
34
35
|
tqdm = "^4.00.0"
|
|
35
36
|
|
|
36
37
|
|
|
37
38
|
[tool.poetry.group.dev.dependencies]
|
|
38
|
-
twine = "^
|
|
39
|
+
twine = "^5.1.1"
|
|
39
40
|
|
|
40
41
|
|
|
41
42
|
[tool.poetry.group.doc.dependencies]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|