-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.05 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
[tool.poetry]
name = "pyinsights"
version = "0.4.2"
description = "AWS CloudWatch Logs Insights is wrapped by Python"
authors = ["homoluctus <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["aws", "insights", "cli"]
packages =[
{ include = "pyinsights" }
]
repository = "https://github.com/homoluctus/pyinsights"
[tool.poetry.dependencies]
python = "^3.8"
jsonschema = "^3.2.0"
boto3 = "^1.10.45"
pyyaml = "^5.2"
[tool.poetry.dev-dependencies]
pytest = "^5.3"
mypy = "^0.761"
pytest-cov = "^2.8.1"
pylint = "^2.4.4"
black = {git = "https://github.com/psf/black.git", rev = "master"}
[tool.black]
line-length = 79
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.poetry.scripts]
pyinsights = "pyinsights.pyinsights:run"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"