-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
66 lines (50 loc) · 1.27 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
[tool.poetry]
name = "pyesios"
version = "0.1.3"
description = "Access to the ESIOS data, the Spanish electricity market entity."
authors = ["Santiago Peñate Vera <[email protected]>"]
license = "LICENSE.txt"
readme = "README.md"
homepage = "https://github.com/SanPen/ESIOS"
repository = "https://github.com/SanPen/ESIOS"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/SanPen/ESIOS/issues"
"Source Code" = "https://github.com/SanPen/ESIOS"
[tool.poetry.dependencies]
python = "^3.9"
pandas = "*"
numpy = "*"
matplotlib = {version = "*", optional=true}
[tool.poetry.extras]
graphs = ["matplotlib"]
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
poetry = "*"
ruff = "*"
black = "*"
isort = "*"
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = "*"
[build-system]
requires = ["setuptools","poetry"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
[tool.ruff]
line-length = 79
select = ["E", "F", "B", "Q"]
show-fixes = true
ignore = ["E501", "B028"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
[tool.pytest.ini_options]
testpaths = ["tests",]
pythonpath = ["."]