surplus/pyproject.toml
Mark Joshwel aaa1747517 meta: switch to directory layout for py.typed
i dont like it, but that's how it'll have to be
https://github.com/python/typing/issues/1333

s+: also, add __str__ support for query types (#18)
2023-09-02 17:03:23 +00:00

41 lines
874 B
TOML

[tool.poetry]
name = "surplus"
version = "2.0.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.3.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^23.7.0"}
mypy = "^1.5.1"
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"
[tool.setuptools.package-data]
"*" = ["py.typed"]
[build-system]
requires = ["poetry-core",]
build-backend = "poetry.core.masonry.api"