forked from macbre/sql-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (31 loc) · 896 Bytes
/
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
[tool.poetry]
name = "sql_metadata"
version = "2.6.0"
license="MIT"
description = "Uses tokenized query returned by python-sqlparse and generates query metadata"
authors = ["Maciej Brencz <[email protected]>", "Radosław Drążkiewicz <[email protected]>"]
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.7.0"
sqlparse = "^0.4.1"
[tool.poetry.dev-dependencies]
black = "^22.12"
coverage = {extras = ["toml"], version = "^6.5"}
pylint = "^2.13.9"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
coveralls = "^3.3.1"
flake8 = "^5.0.4"
[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