-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 986 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
38
39
40
[tool.poetry]
name = "adjust-precision-for-schema"
version = "0.3.4"
description = "Intended for use in singer-io targets to overcome the precision differences among certain data source systems, Python, and target systems"
authors = ["Datateer <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
jsonschema = ">=2.6.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pytest-watch = "^4.2.0"
black = { version = "*", allow-prereleases = true }
flake8 = "^4.0.1"
flake8-bugbear = "^22.1.11"
pre-commit = "^2.17.0"
coverage = "^6.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
# "dr_sven/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"
[tool.coverage.run]
omit = [".*", "*/site-packages/*"]
[tool.coverage.report]
fail_under = 95