-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
43 lines (36 loc) · 1.14 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
[tool.poetry]
name = "bigquery-view-analyzer"
packages = [{ include = "bqva", from = "src" }]
version = "21.9.0"
description = "CLI tool for managing + visualising BigQuery authorised views"
readme = "README.md"
authors = ["Chris Tippett <[email protected]>"]
license = "MIT"
homepage = "https://github.com/servian/bigquery-view-analyzer"
repository = "https://github.com/servian/bigquery-view-analyzer"
keywords = ["bigquery", "google-cloud", "iam"]
classifiers = [
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
google-cloud-bigquery = "^2.23.2"
anytree = "^2.8.0"
yaspin = "^2.0.0"
click = "^8.0.1"
colorama = "^0.4.4"
coveralls = { version = "^3.2.0", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = { extras = ["toml"], version = "^2.12.1" }
[tool.poetry.extras]
tests = ["pytest", "pytest-cov", "coveralls"]
[tool.poetry.scripts]
bqva = 'bqva.cli:main'
[tool.pytest.ini_options]
addopts = "--cov=src -p no:warnings"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"