-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
53 lines (44 loc) · 1.22 KB
/
pyproject.toml
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
[tool.poetry]
name = "jageocoder"
version = "2.1.8"
description = "A Japanese-address geocoder for Python."
authors = ["Takeshi Sagara <[email protected]>"]
repository = "https://github.com/t-sagara/jageocoder/"
license = "The MIT License"
readme = "README.md"
documentation = "https://jageocoder.readthedocs.io/"
packages = [
{include = "jageocoder"},
]
classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
include = ["itaiji_dic.json", "islands.json"]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
certifi = ">=2024.07.04"
cryptography = ">=43.0.1"
deprecated = "^1.2.13"
docopt = "^0.6.2"
geographiclib = "^2.0"
idna = ">=3.7"
jaconv = "^0.3.4"
pycapnp = "*"
portabletab = ">=0.3.3"
rtree = "^1.0.0"
tqdm = "^4.00.0"
[tool.poetry.group.dev.dependencies]
twine = "^4.0.2"
[tool.poetry.group.doc.dependencies]
sphinx-rtd-theme = "^1.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
jageocoder = "jageocoder.__main__:main"