-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.8 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
# SPDX-FileCopyrightText: 2023 Ludwig Hülk <https://github.com/Ludee> © Reiner Lemoine Institut
# SPDX-FileCopyrightText: 2024 Jonas Huber <jh-RLI> © Reiner Lemoine Institut
# SPDX-FileCopyrightText: oemetadata <https://github.com/OpenEnergyPlatform/oemetadata>
# SPDX-License-Identifier: MIT
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.8.0,<4"]
[project]
name = "oemetadata"
version = "2.0.2"
authors = [
{name = "Ludwig Hülk", email = "datenzentrum@rl-institut.de"}]
description = "Open Energy Metadata (OEMetadata) - The energy metadata standard"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"stringcase ~=1.2.0",
]
[project.urls]
Homepage = "https://github.com/OpenEnergyPlatform/oemetadata"
Source = "https://github.com/OpenEnergyPlatform/oemetadata"
Documentation = "https://openenergyplatform.github.io/oemetadata/latest/"
[tool.ruff]
builtins = ["ellipsis"]
target-version = "py38"
[tool.ruff.lint]
exclude = [
".eggs",
"doc",
"_typed_ops.pyi",
]
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
# E741: ambiguous variable names
ignore = [
"E402",
"E501",
"E731",
"E741",
]
select = [
# Pyflakes
"F", # Pycodestyle
"E",
"W", # isort
"I", # Pyupgrade
"UP",
]
[tool.ruff.lint.per-file-ignores]
# F401: imported but unsued
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["pandas_indexing"]
lines-after-imports = 2