-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 998 Bytes
/
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
[tool.poetry]
name = "belvys"
version = "0.3.0"
description = "Package to fetch data through the REST API of energy portfolio management software \"Belvis\"."
authors = ["rwijtvliet <[email protected]>"]
license = "BSD-3"
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.1"
numpy = "^1.25.2"
requests = "^2.31.0"
tqdm = "^4.66.1"
portfolyo = "^0.6.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
flake8 = "^6.1.0"
twine = "^4.0.2"
pre-commit = "^3.6.0"
ipykernel = "^6.25.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.1"
pytest-cov = "^4.1.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-autobuild = "^2021.3.14"
matplotlib = "^3.8.2"
numpydoc = "^1.6.0"
sphinx-copybutton = "^0.5.2"
sphinx-exec-code = "^0.10"
sphinx-rtd-theme = "^1.3.0"
insegel = "^1.3.1"
nbsphinx = "^0.9.3"
pandoc = "^2.3"
ipython = "^8.26.0"
pip-tools = "^7.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"