Merging upstream version 1.13.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
4e93acdb1a
commit
fe812793aa
6 changed files with 146 additions and 30 deletions
|
@ -4,10 +4,8 @@ dynamic = ["version"]
|
|||
description = "CLI for SQLite Databases with auto-completion and syntax highlighting."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.7"
|
||||
license = {text = "BSD"}
|
||||
authors = [
|
||||
{name = "dbcli", email = "litecli-users@googlegroups.com"}
|
||||
]
|
||||
license = { text = "BSD" }
|
||||
authors = [{ name = "dbcli", email = "litecli-users@googlegroups.com" }]
|
||||
urls = { "homepage" = "https://github.com/dbcli/litecli" }
|
||||
dependencies = [
|
||||
"cli-helpers[styles]>=2.2.1",
|
||||
|
@ -19,9 +17,15 @@ dependencies = [
|
|||
]
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools >= 61.0"]
|
||||
requires = [
|
||||
"setuptools>=64.0",
|
||||
"setuptools-scm>=8;python_version>='3.8'",
|
||||
"setuptools-scm<8;python_version<'3.8'",
|
||||
]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools_scm]
|
||||
|
||||
[project.scripts]
|
||||
litecli = "litecli.main:cli"
|
||||
|
||||
|
@ -42,8 +46,5 @@ exclude = ["screenshots", "tests*"]
|
|||
[tool.setuptools.package-data]
|
||||
litecli = ["liteclirc", "AUTHORS"]
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
version = {attr = "litecli.__version__"}
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 140
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue