-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
71 lines (58 loc) · 1.35 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[project]
requires-python = ">=3.10"
name = "fortran_linter"
version = "1.1.3"
description = "A linter for Fortran files"
authors = [
{ name = "Corentin Cadiou", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Fortran",
"Topic :: Software Development :: Build Tools",
]
keywords = [
"fortran",
]
dependencies = []
[project.optional-dependencies]
test = ["pytest"]
[project.readme]
file = "Readme.md"
content-type = "text/markdown"
[project.license]
text = "GPL"
[project.urls]
Homepage = "https://github.com/cphyc/fortran-linter"
[project.scripts]
fortran-linter = "fortran_linter.cli:main"
[tool.setuptools]
packages = [
"fortran_linter",
]
include-package-data = true
license-files = [
"LICENSE",
]
[tool.setuptools.package-data]
fortran_linter = [
"Readme.md",
]
[tool.ruff]
line-length = 88
[tool.isort]
combine_as_imports = true
known_first_party = ["fortran_linter"]
[tool.ruff.lint]
# Enable Pyflakes `E` and `F` codes by default.
select = ["E", "C", "F", "UP", "B", "A", "YTT", "S", "N"]
ignore = ["C901"]
[tool.ruff.lint.per-file-ignores]
"**/test*.py" = ["S101"]