Adding upstream version 1.29.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
5bd6a68e8c
commit
f9065f1bef
68 changed files with 3723 additions and 3336 deletions
59
pyproject.toml
Normal file
59
pyproject.toml
Normal file
|
@ -0,0 +1,59 @@
|
|||
[project]
|
||||
name = "mycli"
|
||||
dynamic = ["version"]
|
||||
description = "CLI for MySQL Database. With auto-completion and syntax highlighting."
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.7"
|
||||
license = { text = "BSD" }
|
||||
authors = [{ name = "Mycli Core Team", email = "mycli-dev@googlegroups.com" }]
|
||||
urls = { homepage = "http://mycli.net" }
|
||||
|
||||
dependencies = [
|
||||
"click >= 7.0",
|
||||
"cryptography >= 1.0.0",
|
||||
"Pygments>=1.6",
|
||||
"prompt_toolkit>=3.0.6,<4.0.0",
|
||||
"PyMySQL >= 0.9.2",
|
||||
"sqlparse>=0.3.0,<0.5.0",
|
||||
"sqlglot>=5.1.3",
|
||||
"configobj >= 5.0.5",
|
||||
"cli_helpers[styles] >= 2.2.1",
|
||||
"pyperclip >= 1.8.1",
|
||||
"pyaes >= 1.6.1",
|
||||
"pyfzf >= 0.3.1",
|
||||
"importlib_resources >= 5.0.0; python_version<'3.9'",
|
||||
]
|
||||
|
||||
[build-system]
|
||||
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.optional-dependencies]
|
||||
ssh = ["paramiko", "sshtunnel"]
|
||||
dev = [
|
||||
"behave>=1.2.6",
|
||||
"coverage>=7.2.7",
|
||||
"pexpect>=4.9.0",
|
||||
"pytest>=7.4.4",
|
||||
"pytest-cov>=4.1.0",
|
||||
"tox>=4.8.0",
|
||||
"pdbpp>=0.10.3",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
mycli = "mycli.main:cli"
|
||||
|
||||
[tool.setuptools.package-data]
|
||||
mycli = ["myclirc", "AUTHORS", "SPONSORS"]
|
||||
|
||||
[tool.setuptools.packages.find]
|
||||
include = ["mycli*"]
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 140
|
Loading…
Add table
Add a link
Reference in a new issue