-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
68 lines (61 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "amazon-omics-tools"
version = "0.7.0"
license = "Apache-2.0"
description = "Tools for working with the AWS HealthOmics Service"
repository = "https://github.com/awslabs/amazon-omics-tools"
authors = ["Amazon Web Services"]
readme = "README.md"
packages = [{ include = "omics" }]
[tool.poetry.dependencies]
python = "^3.10"
s3transfer = "^0.10.2"
boto3 = "^1.34.160"
mypy-boto3-omics = "^1.34.95"
boto3-stubs = "^1.34.160"
botocore-stubs = "^1.34.160"
docopt = "^0.6.2"
python-dateutil = "^2.8.2"
bokeh = "^3.5.1"
pandas = "^2.2.2"
[tool.poetry.group.dev.dependencies]
black = ">=22.8,<25.0"
pytest = "^7.1.3"
mypy = "^0.981"
flake8 = "^5.0.4"
flake8-docstrings = "^1.6.0"
isort = "^5.10.1"
pytest-cov = "^4.0.0"
pytest-rerunfailures = "^10.2"
types-s3transfer = "^0.6.0.post4"
types-setuptools = "^65.4.0.0"
types-requests = "^2.32.0.20240602"
types-python-dateutil = "^2.9.0.20240316"
types-docopt = "^0.6.11.4"
pip-audit = "^2.7.2"
idna = "3.7"
[tool.black]
line-length = 100
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"nocov",
"if TYPE_CHECKING:",
]
[tool.coverage.run]
branch = true
omit = [
# add files to omit here
]