-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpyproject.toml
45 lines (37 loc) · 1.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[project]
name = "pgspecial"
dynamic = ["version"]
description = "Meta-commands handler for Postgres Database."
readme = "README.rst"
requires-python = ">=3.9"
license = { text = "BSD" }
authors = [{ name = "Pgcli Core Team", email = "[email protected]" }]
keywords = ["postgres", "database", "cli", "meta-commands"]
dependencies = ["click>=4.1", "sqlparse>=0.1.19", "psycopg>=3.0.10"]
[project.optional-dependencies]
dev = [
"pytest>=6.2.4",
"coverage",
"codecov>=1.5.1",
"pre-commit>=1.16.0",
"configobj>=5.0.6",
"ruff>=0.11.7",
"tox>=4.8.0",
"pdbpp>=0.10.3",
]
[project.scripts]
litecli = "litecli.main:cli"
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.ruff]
target-version = 'py39'
line-length = 140
[tool.ruff.lint.isort]
force-sort-within-sections = true
known-first-party = ['pgspecial', 'tests']
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--capture=sys --showlocals -rxs"
testpaths = ["tests"]