-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
61 lines (55 loc) · 1.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
[project]
name = "jageocoder"
version = "2.2.1.1"
description = "A Japanese-address geocoder for Python."
authors = [{name = "Takeshi Sagara", email = "sagara@info-proto.com"}]
readme = "README.md"
license = { text = "MIT" }
license-file = "LICENSE"
requires-python = ">3.9.1"
keywords = ["geocoder", "Japanese address"]
classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"deprecated >=1.2.13",
"docopt-ng",
"geographiclib >=2.0",
"jaconv >=0.3.9",
"requests",
"rtree >=1.0.0",
"tqdm >=4.0.0",
"marisa-trie >=1.3.1",
]
[project.optional-dependencies]
dev = [
"flake8",
"twine >=5.1.1",
"tox >=4.0.0",
"tox-uv"
]
doc = [
"sphinx-rtd-theme >=1.2.0"
]
test = [
"pytest >=8.4.1"
]
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
jageocoder = "jageocoder.__main__:main"
[project.urls]
homepage = "https://t-sagara.github.io/jageocoder/"
repository = "https://github.com/t-sagara/jageocoder"
documentation = "https://jageocoder.readthedocs.io/ja/latest/"
[tool.poetry]
package-mode = true
packages = [
{include = "jageocoder"},
]
include = ["itaiji_dic.json"]