-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 915 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 915 Bytes
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
[tool.poetry]
name = "nordpool"
version = "0.5.1"
description = "Python library for fetching Nord Pool spot prices."
authors = ["Kimmo Huoman <kipenroskaposti@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/kipe/nordpool"
repository = "https://github.com/kipe/nordpool"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
python-dateutil = "^2.9.0.post0"
requests = "^2.32.3"
pytz = ">=2024.2"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
vcrpy = "^7.0.0"
time-machine = "^2.16.0"
coverage = "^7.6.3"
pylint = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
target-version = ['py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
skip = []
known_first_party = ['nordpool']