2021-08-26 22:25:06 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "guzzy"
|
2021-08-26 22:46:35 +02:00
|
|
|
version = "0.1.1"
|
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]
|
2021-08-26 22:46:35 +02:00
|
|
|
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"
|