File tree Expand file tree Collapse file tree 2 files changed +33
-2
lines changed
Expand file tree Collapse file tree 2 files changed +33
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,7 @@ test_coverage:
1515 coverage combine
1616
1717reformat :
18- isort --line-width 120 --atomic --project eduid_scimapi --recursive $(SOURCE )
19- black --line-length 120 --target-version py37 --skip-string-normalization $(SOURCE )
18+ ruff --format $(SOURCE )
2019
2120typecheck :
2221 mypy --ignore-missing-imports $(SOURCE )
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " pyFF"
3+ version = " 2.1.5"
4+ readme = " README.rst"
5+ description = " Federation Feeder"
6+ requires-python = " >=3.7"
7+ license = {file = " LICENSE" }
8+
9+ authors = [
10+ {name = " Leif Johansson" , email = " leifj@sunet.se" },
11+ {name = " Fredrik Thulin" , email = " redrik@thulin.net" },
12+ {name = " Enrique Pérez Arnaud" },
13+ {name = " Mikael Frykholm" , email = " mifr@sunet.se" },
14+ ]
15+ maintainers = [
16+ {name = " Mikael Frykholm" , email = " mifr@sunet.se" }
17+ ]
18+
19+ [tool .ruff ]
20+ # Allow lines to be as long as 120.
21+ line-length = 120
22+ target-version = " py37"
23+ [tool .ruff .format ]
24+ quote-style = " preserve"
25+
26+ [tool .build_sphinx ]
27+ source-dir = " docs/"
28+ build-dir = " docs/build"
29+ all_files = " 1"
30+
31+ [tool .upload_sphinx ]
32+ upload-dir = " docs/build/html"
You can’t perform that action at this time.
0 commit comments