forked from gyuta/bqemulatormanager
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.15 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
46
47
48
49
50
51
52
[tool.poetry]
name = "bqemulatormanager"
version = "0.0.0" # using poetry-dynamic-versioning
description = "bqemulatormanager is a wrapper of bigquery-emulator which provides us BigQuery mock working in local machine."
authors = ["gyuta <[email protected]>", "M3, Inc."]
readme = "README.md"
[tool.poetry-dynamic-versioning]
enable = true
style = "pep440"
pattern = "^(?P<base>\\d+\\.\\d+\\.\\d+)"
[tool.poetry.dependencies]
python = ">=3.8,<4"
pyyaml = "*"
google-cloud-bigquery = ">=2.34.4"
db-dtypes = "^1.0.0"
psutil = "^5.0.0"
google-auth = "^2.17.2"
[tool.poetry.group.dev.dependencies]
pyproject-flake8 = "*"
tox = "*"
coverage = "*"
isort = "*"
black = "*"
mypy = "*"
pandas-stubs = "*"
flake8-unused-arguments = "^0.0.13"
[tool.flake8]
per-file-ignores = """
__init__.py: F401
"""
max-line-length = 160
exclude = "venv/*,tox/*"
# ignore methods like __enter__, __exit__
unused-arguments-ignore-dunder = true
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311']
line-length = 160
[tool.isort]
line_length = 160
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"