1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
[project]
name = "keep"
version = "2.11"
description = "Personal shell command keeper"
readme = "README.md"
authors = [
{ name = "Himanshu Mishra", email = "himanshu.mishra.kgp@gmail.com" },
]
dependencies = ["PyGithub", "click", "requests", "terminaltables3"]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/orkohunter/keep"
Downloads = "https://github.com/orkohunter/keep/archive/master.zip"
[project.scripts]
keep = "keep.cli:cli"
[tool.flit.sdist]
include = ["completions/"]
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
|