-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (36 loc) · 1.04 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
[tool.poetry]
name = "EMRFlow"
version = "1.4.2"
description = "Run/Monitor your PySpark Jobs in Amazon EMR"
authors = ["Utkarsh Vashisth <[email protected]>"]
readme = "README.md"
packages = [{include = "emrflow"}]
[tool.poetry.dependencies]
python = "^3.8"
# base project requirements
boto3 = {version = ">=1.25.4"} #always fix version for boto3
typer = {extras = ["all"], version = "^0.12.0"}
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.black]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.pylint.main]
disable = ["line-too-long", "logging-fstring-interpolation", "attribute-defined-outside-init"]
[tool.pylint.ignore]
ignore-paths=["test/.*$", "tests/.*$"]
[tool.pylint.formatting]
max-line-length = 88
[tool.coverage.run]
omit = ["emrflow/emr_serverless.py","emrflow/main.py"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
emrflow = "emrflow.main:app"