File: pyproject.toml

package info (click to toggle)
python-keep 2.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: python: 542; sh: 25; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 593 bytes parent folder | download
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"