-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 819 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 819 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "renewable-cannibalization"
version = "0.1.0"
description = "Analytics on renewable price cannibalization in the German power market"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Mohammad Faisal", email = "mohammad.faisal@gmx.de" }]
dependencies = [
"numpy>=1.24",
"pandas>=2.0",
"requests>=2.28",
"pyyaml>=6.0",
"matplotlib>=3.7",
"seaborn>=0.13",
]
[project.optional-dependencies]
app = ["streamlit>=1.40"]
dev = ["pytest>=7.0"]
[project.urls]
Repository = "https://github.com/CodingxFaisal/renewable-cannibalization"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]