-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 882 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 882 Bytes
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
[tool.poetry]
name = "sql_metadata"
version = "2.20.0"
license="MIT"
description = "Uses tokenized query returned by python-sqlparse and generates query metadata"
authors = ["Maciej Brencz <maciej.brencz@gmail.com>", "Radosław Drążkiewicz <collerek@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/macbre/sql-metadata"
repository = "https://github.com/macbre/sql-metadata"
packages = [
{ include="sql_metadata" }
]
[tool.poetry.dependencies]
python = "^3.10"
sqlparse = ">=0.4.1,<0.6.0"
[tool.poetry.dev-dependencies]
black = "^26.3"
coverage = {extras = ["toml"], version = "^7.13"}
pylint = "^4.0.5"
pytest = "^9.0.3"
pytest-cov = "^7.1.0"
flake8 = "^7.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
relative_files = true
[tool.coverage.report]
show_missing = true
fail_under = 100