forked from 8percent/aws-firehose-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.09 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
[tool.poetry]
name = "aws-firehose-handler"
version = "1.0.0"
description = "Python logging handler for AWS Firehose"
authors = ["JaeyoungHeo <[email protected]>"]
maintainers = ["JaeyoungHeo <[email protected]>"]
readme = "README.md"
repository = "https://github.com/8percent/aws-firehose-handler"
license = "MIT"
packages = [
{ include = "firehose_handler", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.9 <3.11"
boto3 = ">=1.0.0 <2.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
isort = "^5.10.1"
tox = "^3.25.1"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
codecov = "^2.1.12"
black = "^22.6.0"
pre-commit = "^2.19.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Lint Configurations
[tool.isort]
force_single_line = "True"
profile = "black"
line_length = "79"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
[tool.black]
preview = "True"
line-length = "79"
target-version = ['py310']
skip-string-normalization = "True"
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = [
"tests",
]