-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (69 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
74 lines (69 loc) · 2.42 KB
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
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "ebm"
dynamic = ["version"]
description = "EBM is a bottom-up model that forecast estimates how area, energy need, heating systems and yearly energy use in the Norwegian building stock towards 2050"
keywords = ["building energy", "building model", "energy use buildings", "energy need buildings", "building area",
"area", "building stock", "energy forecast", "area forecast", "norwegian buildings"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: OS Independent",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
readme = "README.md"
license = "MIT"
authors = [
{ email = "ebm@nve.no" },
{ name = "Lars Petrusson", email = "lfep@nve.no" },
{ name = "Mohammed Ettyabi", email = "moe@nve.no" },
{ name = "Ketil Nordstad", email = "kenord@nve.no" }]
requires-python = ">= 3.11"
dependencies = ["loguru",
"numpy==2.2.6",
"openpyxl",
"pandas==2.2.3",
"python-dotenv",
"pandera==0.20.4",
"XlsxWriter",
"pywin32 ; platform_system == 'Windows'",
"polars==1.31.0",
"pyarrow==20.0.0",
"azure-identity==1.23.0",
]
[project.optional-dependencies]
test = ["pytest"]
build = ["build"]
dev = ["ebm[test]", "ebm[build]", 'ruff', 'ruff-lsp']
docs = ['sphinx', 'sphinx-rtd-theme', 'sphinx-autodoc-typehints', 'numpydoc', 'sphinx-tabs']
tqdm = ['tqdm', 'XlsxWriter']
[project.urls]
Homepage = "https://www.nve.no/"
Documentation = "https://nve.github.io/ebm-docs"
Repository = "https://github.com/NVE/ebm.git"
[tool.setuptools]
packages = [
'ebm',
'ebm.model', 'ebm.services', 'ebm.cmd', 'ebm.data', 'ebm.data.calibrated', 'ebm.data.original',
'ebmgeodist',
'energibruksmodell']
include-package-data = true
[project.scripts]
ebm = "ebm.cmd.ebmexe:main"
ebm-geodist = "ebmgeodist.__main__:main"
ebm-calibrate = "ebm.cmd.calibrate_excel_com_io:main"
[tool.setuptools.dynamic]
version = { attr = "ebm.__version__.version" }
[tool.setuptools.package-data]
ebm = ["*.csv"]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = ["tests"]