Skip to content

Commit a71672e

Browse files
committed
move settings to pyproject.toml
1 parent 9937144 commit a71672e

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ script:
1818
- codecov --version
1919
- tox
2020
- isort --check src tests
21-
- black -l 100 --check src tests
21+
- black --check src tests
2222
after_success:
2323
- codecov
2424
notifications:

pyproject.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# PEP 518: https://www.python.org/dev/peps/pep-0518/
2+
3+
[tool.black]
4+
line-length = 100
5+
6+
[tool.isort]
7+
force_single_line = true
8+
known_first_party = "cryptojwt"
9+
include_trailing_comma = true
10+
force_grid_wrap = 0
11+
use_parentheses = true
12+
line_length = 100

setup.cfg

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)