-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1000 Bytes
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1000 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
43
44
45
46
47
48
49
50
[tool.poetry]
name = "nexa-bidkit"
version = "1.0.0"
description = "Day-ahead and intraday auction bid generation for European power markets"
authors = []
readme = "README.md"
license = "MIT"
packages = [{ include = "nexa_bidkit", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^2.0"
pandas = "^2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
pytest-cov = "^6.0"
coverage = "^7.0"
hypothesis = "^6.0"
mypy = "^1.0"
ruff = "^0.9"
pandas-stubs = "^3.0.0.260204"
matplotlib = "^3.8"
jupyter = "^1.0"
nbmake = "^1.5"
nbconvert = "^7.0"
ipykernel = "^6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
python_version = "3.11"
strict = true
files = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=nexa_bidkit --cov-report=term-missing"
[tool.coverage.run]
source = ["src"]