diff options
| author | jvoisin | 2023-02-20 20:00:14 +0100 |
|---|---|---|
| committer | jvoisin | 2023-02-20 21:15:07 +0100 |
| commit | a63011b3f62d8de15cb27c0af0ccd46edbd2cfc4 (patch) | |
| tree | 2adea1728d3eead90b630f1089b71b3fdf24993a /pyproject.toml | |
| parent | e41390eb64eaf72fd1b9914221eaf22801812521 (diff) | |
Improve the CI
- Remove some useless linters
- Make use of ruff
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0125edf --- /dev/null +++ b/pyproject.toml | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | [project] | ||
| 2 | name = "mat" | ||
| 3 | readme = "README.md" | ||
| 4 | requires-python = ">=3.9" | ||
| 5 | |||
| 6 | [tool.ruff] | ||
| 7 | target-version = "py39" | ||
| 8 | # E501 Line too long | ||
| 9 | ignore = ["E501", "F401", "E402", "E722"] | ||
