guzzy/pyproject.toml

31 lines
858 B
TOML
Raw Normal View History

2021-08-26 22:25:06 +02:00
[tool.poetry]
name = "guzzy"
2021-08-31 12:24:31 +02:00
version = "0.1.3"
2021-08-26 22:25:06 +02:00
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"
2021-08-26 22:25:06 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"