Skip to content

Commit

Permalink
update package configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
mhiro2 committed Oct 19, 2021
1 parent 533c10b commit 3b1d46f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
24 changes: 20 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
[tool.poetry]
name = "carling"
version = "0.3.1"
description = ""
authors = ["Adam Moore <[email protected]>", "Tsuyoki Kumazaki <[email protected]>"]
description = "Useful transforms for supporting apache beam pipelines."
authors = [
"Adam Moore <[email protected]>",
"Tsuyoki Kumazaki <[email protected]>",
"Masaaki Hirotsu <[email protected]>"
]
license = "Apache-2.0"
homepage = "https://github.com/mc-digital/carling"
repository = "https://github.com/mc-digital/carling"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.7"
Expand All @@ -13,6 +21,14 @@ deepdiff = "^5.0.2"
pytest = "^5.2"
pytest-watch = "^4.2.0"

[tool.black]
line-length = 99
target-version = ["py37", "py38", "py39"]

[tool.isort]
profile = "black"
line_length = 99

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
5 changes: 4 additions & 1 deletion pytest.ini → setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[flake8]
max-line-length = 99
extend-ignore = E203

[pytest]
[tool:pytest]
filterwarnings =
ignore:.*Using.*ABCs.*
ignore:.*the imp module.*
Expand Down

0 comments on commit 3b1d46f

Please sign in to comment.