guzzy/pyproject.toml
2021-08-31 12:34:57 +02:00

31 lines
858 B
TOML

[tool.poetry]
name = "guzzy"
version = "0.1.4"
description = "Interactive CLI git client inside fzf."
authors = ["samedamci <samedamci@disroot.org>"]
license = "ISC"
homepage = "https://github.com/samedamci/guzzy"
repository = "https://github.com/samedamci/guzzy"
keywords = ["git", "fzf"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Unix Shell",
"Intended Audience :: Developers",
"Topic :: Software Development :: Version Control",
"Topic :: Utilities",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.scripts]
guzzy = "guzzy:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"