-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (42 loc) · 1.63 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
[project]
name = "dibs_cli"
version = "1.0.1"
description = "DIBS---Dynamic-ISO-Building-Simulator command line interface (CLI): DIBS---Dynamic-ISO-Building-Simulator is a simulation program for calculating the space heating, occupancy hot water, cooling and electricity demand of German non-residential buildings. Further the DIBS calculates the heating value based energy uses, the primary energy and the greenhouse gas emission. The underlying resistance-capacity-model is based on the simplified hourly method of ISO 13790:2008."
readme = "README.md"
requires-python = ">=3.10.0"
license = { file = "LICENSE" }
authors = [
{ name = "Julian Bischof", email = "[email protected]" },
{ name = "Simon Knoll" },
{ name = "Michael Hörner" },
{ name = "Wail Samjouni", email = "[email protected]" },
{ name = "André Müller", email = "[email protected]" },
{ name = "Jens Calisti", email = "[email protected]" },
]
dependencies = [
"rich",
"tqdm",
"typer",
"dibs_computing_core",
"dibs_datasource_csv",
"dibs_data"
]
keywords = ["Building", "Building-Stock", "Non-Domestic", "Non-Residential", "Operational", "Energy", "Greenhouse Gas", "Global Warming Potential", "Simulation", "Model", "Germany", "ISO 13790", "5R1C"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[tool.pytest.ini_options]
pythonpath = [
"src",
]
[project.scripts]
dibs-cli = 'dibs_cli.main:app'
[project.urls]
Repository = "https://github.com/IWUGERMANY/DibsCLI"
[build-system]
requires = ["flit_core >=2"]
build-backend = "flit_core.buildapi"
[tool.black]
line-length = 88
target-version = ['py310']