forked from macbre/sql-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.01 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
[tool.poetry]
name = "sql_metadata"
version = "2.8.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.8"
# sqlparse = { path = "../sqlparse", develop = true }
sqlparse = { git = "https://github.com/hex-inc/sqlparse", rev = "c39a749974f991b956ec52bab952d04fac532842" }
[tool.poetry.dev-dependencies]
black = "^23.9"
coverage = {extras = ["toml"], version = "^6.5"}
pylint = "^2.17.5"
pytest = "^7.4.2"
pytest-cov = "^4.1.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