-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
32 lines (25 loc) · 948 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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reskit"
version = "0.4.0"
description = "RESKit aids with the broad-scale simulation of renewable energy systems, primarily for the purpose of input generation to Energy System Design Models."
readme = "README.md"
authors = [
{ name = "David Severin Ryberg" },
{ name = "Dilara Gulcin Caglayan" },
{ name = "Sabrina Schmitt" },
{ name = "Roman Kraemer" }
]
maintainers = [
{name = "Chrstoph Winkler", email = "c.winkler@fz-juelich.de"},
{name = "Phillip Dunkel", email = "p.dunkel@fz-juelich.de"}
]
license = { file = "MIT.txt" }
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
testpaths = ["test"] # Sets the path where to look for tests
pythonpath =["test"] # Sets the path which should be prepended to pythonpath relative to the root folder
console_output_style = "count"