surplus/pyproject.toml
dependabot[bot] 2168d594c8
build(deps): bump geopy from 2.4.0 to 2.4.1 (#63)
Bumps [geopy](https://github.com/geopy/geopy) from 2.4.0 to 2.4.1.
- [Release notes](https://github.com/geopy/geopy/releases)
- [Changelog](https://github.com/geopy/geopy/blob/master/docs/changelog_2xx.rst)
- [Commits](https://github.com/geopy/geopy/compare/2.4.0...2.4.1)

---
updated-dependencies:
- dependency-name: geopy
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mark Joshwel <89562141+markjoshwel@users.noreply.github.com>
2024-02-21 18:26:42 +00:00

38 lines
822 B
TOML

[tool.poetry]
name = "surplus"
version = "2.2.0"
description = "Python script to convert Google Maps Plus Codes to iOS Shortcuts-like shareable text."
authors = ["Mark Joshwel <mark@joshwel.co>"]
license = "Unlicense"
readme = "README.md"
repository = "https://github.com/markjoshwel/surplus"
keywords = ["pluscodes", "openlocationcode"]
packages = [
{include = "surplus"}
]
[tool.poetry.dependencies]
python = "^3.11"
pluscodes = "^2022.1.3"
geopy = "^2.4.1"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^24.2.0"}
mypy = "^1.8.0"
isort = "^5.12.0"
[tool.poetry.scripts]
surplus = 'surplus:cli'
"s+" = 'surplus:cli'
[tool.black]
line-length = 90
[tool.isort]
line_length = 90
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"