-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (70 loc) · 1.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "maps-cli"
version = "0.0.4"
description = "A CLI for maps services."
authors = ["Sachin Kharude <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sackh/maps-cli"
repository = "https://github.com/sackh/maps-cli"
packages = [
{ include = "maps" },
{ include = "maps/**/*.py" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
keywords = ["cli", "maps"]
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
click = "^7.1.2"
geopy = "^2.1.0"
overpy = "^0.4"
simplejson = "^3.17.2"
requests = "^2.25.1"
geojsonio = "^0.0.3"
geojson = "^2.5.0"
here-location-services = "^0.2.0"
openrouteservice = "^2.3.3"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^20.8b1"
isort = "^5.7.0"
coverage = "^5.3.1"
pytest-cov = "^2.10.1"
pytest-flake8 = "^1.0.7"
Sphinx = "^3.4.3"
sphinx-rtd-theme = "^0.5.1"
pytest-mock = "^3.6.1"
pre-commit = "^2.16.0"
[tool.poetry.scripts]
maps = "maps.commands:maps"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sackh/maps-cli/issues"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''