forked from daren-thomas/parseidf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
32 lines (28 loc) · 907 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "energyplus_parser"
version = "0.0.1"
description = "A simple toolkit for parsing EnergyPlus IDF files and generating 2D/3D visualisations of the geometry. Based on the parseidf module by Daren Thomas."
readme = "README.md"
authors = [{ name = "Dillon Loh", email = "loh.dillon@gmail.com" }]
license = { file = "LICENSE.txt" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ['simulation', 'parsing', 'energyplus', 'idf']
dependencies = [
"matplotlib",
"ply",
"numpy==1.26.4",
"plotly"
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/dillonloh/energyplus_parser"
[project.scripts]
realpython = "reader.__main__:main"