Skip to content

Commit

Permalink
Merge pull request #4 from DustinMoriarty/black
Browse files Browse the repository at this point in the history
Black
  • Loading branch information
DustinMoriarty committed Dec 1, 2020
2 parents 43f16d8 + 03da394 commit 3bc764f
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "config-injector"
version = "0.2.1"
version = "0.2.2"
description = "Simple dependency injection framework for python for easy and logical app configuration."
authors = ["DustinMoriarty <dustin.moriarty@protonmail.com>"]
readme = "README.md"
Expand Down Expand Up @@ -35,26 +35,19 @@ include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
src_paths = ["poetry", "tests"]
skip_glob = ["*/setup.py"]
src_paths = ["config_injector", "tests"]
filter_files = true
known_first_party = "poetry"

[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''

0 comments on commit 3bc764f

Please sign in to comment.