-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
75 lines (67 loc) · 1.89 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "iesopt"
version = "2.3.0"
description = "IESopt -- an Integrated Energy System Optimization framework."
keywords = ["integrated energy systems", "optimization", "energy model", "modelling"]
authors = [
"Stefan Strömer <[email protected]>",
]
maintainers = [
"Stefan Strömer <[email protected]>",
]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
homepage = "https://github.com/ait-energy/iesopt"
documentation = "https://ait-energy.github.io/iesopt"
repository = "https://github.com/ait-energy/iesopt"
[tool.poetry.urls]
"Issues" = "https://github.com/ait-energy/iesopt/issues"
"Changelog" = "https://github.com/ait-energy/iesopt/releases"
[tool.poetry.dependencies]
python = "^3.11"
pathlib = "^1.0.0"
juliacall = "^0.9.20"
pandas = "^2.0.0"
juliapkg = "^0.1.13"
pydantic = "^2.7.4"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.7"
codespell = "^2.3.0"
pre-commit = "^3.8.0"
[tool.poetry.group.docs.dependencies]
myst-parser = "^3.0.1"
sphinx = "^7.3.7"
sphinxawesome-theme = "^5.2.0"
sphinx-togglebutton = "^0.3.2"
ipywidgets = "^8.1.3"
myst-nb = "^1.1.0"
jupytext = "^1.16.4"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
pytest-ruff = "^0.3.2"
[tool.ruff]
line-length = 120
extend-exclude = ["*.jl"]
target-version = "py311"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--ruff",
"--ruff-format",
"--cov-report=term",
"--cov-report=xml:coverage.xml",
"--cov=iesopt",
]