2023-06-02 19:39:25 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "surplus"
|
2023-10-14 20:06:30 +00:00
|
|
|
version = "2.2.0"
|
2023-09-01 13:38:38 +00:00
|
|
|
description = "Python script to convert Google Maps Plus Codes to iOS Shortcuts-like shareable text."
|
2023-06-02 19:39:25 +00:00
|
|
|
authors = ["Mark Joshwel <mark@joshwel.co>"]
|
2023-09-02 17:03:23 +00:00
|
|
|
license = "Unlicense"
|
2023-06-02 19:39:25 +00:00
|
|
|
readme = "README.md"
|
2023-09-02 17:03:23 +00:00
|
|
|
repository = "https://github.com/markjoshwel/surplus"
|
|
|
|
keywords = ["pluscodes", "openlocationcode"]
|
|
|
|
packages = [
|
|
|
|
{include = "surplus"}
|
|
|
|
]
|
2023-06-02 19:39:25 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-09-01 06:17:47 +00:00
|
|
|
python = "^3.11"
|
2023-06-02 19:39:25 +00:00
|
|
|
pluscodes = "^2022.1.3"
|
2024-02-21 18:26:42 +00:00
|
|
|
geopy = "^2.4.1"
|
2023-06-02 19:39:25 +00:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-21 20:54:59 +00:00
|
|
|
black = "^24.2.0"
|
2024-02-21 18:25:46 +00:00
|
|
|
mypy = "^1.8.0"
|
2023-06-02 19:39:25 +00:00
|
|
|
isort = "^5.12.0"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
surplus = 'surplus:cli'
|
2023-06-03 08:26:15 +00:00
|
|
|
"s+" = 'surplus:cli'
|
2023-06-02 19:39:25 +00:00
|
|
|
|
2023-08-31 20:28:44 +00:00
|
|
|
[tool.black]
|
|
|
|
line-length = 90
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
line_length = 90
|
|
|
|
profile = "black"
|
|
|
|
|
2023-06-02 19:39:25 +00:00
|
|
|
[build-system]
|
2023-09-03 14:23:40 +00:00
|
|
|
requires = ["poetry-core"]
|
2023-06-02 19:39:25 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|