-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
86 lines (79 loc) · 1.91 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "isimip-qc"
authors = [
{ name = "Matthias Büchner", email = "[email protected]"},
{ name = "Jochen Klar", email = "[email protected]" },
]
maintainers = [
{ name = "Matthias Büchner", email = "[email protected]"},
]
description = "A command line tool for the quality control of climate impact data of the ISIMIP project."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
"colorlog",
"isimip-utils>=1.2",
"jsonschema",
"netCDF4",
"prettytable",
"python-dotenv",
"requests"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"build",
"pre-commit",
"ruff",
"twine",
]
[project.urls]
Repository = "https://github.com/ISI-MIP/isimip-qc"
[project.scripts]
isimip-qc = "isimip_qc.main:main"
[tool.setuptools.dynamic]
version = { attr = "isimip_qc.__version__" }
[tool.ruff]
target-version = "py38"
line-length = 120
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"PGH", # pygrep-hooks
"RUF", # ruff
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020
]
ignore = [
"B006", # mutable-argument-default
"B007", # unused-loop-control-variable
"B018", # useless-expression
"RUF012", # mutable-class-default
]
[tool.ruff.isort]
known-first-party = [
"isimip_qc"
]
section-order = [
"future",
"standard-library",
"third-party",
"isimip_utils",
"first-party",
"local-folder"
]
[tool.ruff.isort.sections]
isimip_utils = ["isimip_utils"]