forked from awslabs/aws-ddk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (77 loc) · 1.81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[tool.poetry]
name = "aws-ddk-dev"
version = "0.4.1"
description = "AWS DataOps Development Kit"
authors = [
"AWS Professional Services <[email protected]>"
]
license = "Apache-2.0"
readme = "README.md"
keywords = ["aws", "ddk", "dataops"]
homepage = "https://github.com/awslabs/aws-ddk"
repository = "https://github.com/awslabs/aws-ddk"
documentation = "https://awslabs.github.io/aws-ddk/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Code Generators",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.7.1, <3.11"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
boto3-stubs-lite = {version = "*", extras = ["codecommit", "cloudformation", "sts"]}
bump2version = "^1.0.1"
cfn-lint = "^0.56.4"
doc8 = "^0.10.1"
flake8 = "^4.0.1"
isort = "^5.10.1"
mypy = "^0.931"
typing-extensions = "^4.1.1"
[tool.black]
line-length = 120
target-version = ["py36", "py37", "py38"]
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.env
| _build
| buck-out
| build
| dist
| .vscode
| .cdk.out
| .out
| dev
| .coverage
| data
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
py_version = 37
skip_gitignore = true
[tool.mypy]
python_version = 3.7
strict = true
ignore_missing_imports = true
disallow_subclassing_any = false
exclude = "(data|tests)"