ifctrano 0.1.9__tar.gz → 0.1.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ifctrano-0.1.9 → ifctrano-0.1.10}/PKG-INFO +10 -2
- {ifctrano-0.1.9 → ifctrano-0.1.10}/README.md +8 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/pyproject.toml +2 -2
- {ifctrano-0.1.9 → ifctrano-0.1.10}/LICENSE +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/__init__.py +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/base.py +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/bounding_box.py +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/building.py +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/example/verification.ifc +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/exceptions.py +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/main.py +0 -0
- {ifctrano-0.1.9 → ifctrano-0.1.10}/ifctrano/space_boundary.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ifctrano
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.10
|
4
4
|
Summary: Package for generating building energy simulation model from IFC
|
5
5
|
Home-page: https://github.com/andoludo/ifctrano
|
6
6
|
License: GPL V3
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Requires-Dist: ifcopenshell (>=0.8.1.post1,<0.9.0)
|
16
16
|
Requires-Dist: pydantic (>=2.10.6,<3.0.0)
|
17
17
|
Requires-Dist: shapely (>=2.0.7,<3.0.0)
|
18
|
-
Requires-Dist: trano (>=0.1.
|
18
|
+
Requires-Dist: trano (>=0.1.50,<0.2.0)
|
19
19
|
Requires-Dist: typer (>=0.12.5,<0.13.0)
|
20
20
|
Project-URL: Repository, https://github.com/andoludo/ifctrano
|
21
21
|
Description-Content-Type: text/markdown
|
@@ -28,6 +28,14 @@ Description-Content-Type: text/markdown
|
|
28
28
|
pip install ifctrano
|
29
29
|
```
|
30
30
|
|
31
|
+
To check the installation, run the following commands:
|
32
|
+
|
33
|
+
```bash
|
34
|
+
ifctrano --help
|
35
|
+
|
36
|
+
ifctrano verify
|
37
|
+
```
|
38
|
+
|
31
39
|
## Overview
|
32
40
|
ifctrano is yet another **IFC to energy simulation** tool designed to translate **Industry Foundation Classes (IFC)** models into energy simulation models in **Modelica**.
|
33
41
|
|
@@ -6,6 +6,14 @@
|
|
6
6
|
pip install ifctrano
|
7
7
|
```
|
8
8
|
|
9
|
+
To check the installation, run the following commands:
|
10
|
+
|
11
|
+
```bash
|
12
|
+
ifctrano --help
|
13
|
+
|
14
|
+
ifctrano verify
|
15
|
+
```
|
16
|
+
|
9
17
|
## Overview
|
10
18
|
ifctrano is yet another **IFC to energy simulation** tool designed to translate **Industry Foundation Classes (IFC)** models into energy simulation models in **Modelica**.
|
11
19
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "ifctrano"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.10"
|
4
4
|
description = "Package for generating building energy simulation model from IFC"
|
5
5
|
authors = ["Ando Andriamamonjy <andoludovic.andriamamonjy@gmail.com>"]
|
6
6
|
license = "GPL V3"
|
@@ -12,7 +12,7 @@ keywords = ["BIM","IFC","energy simulation", "modelica", "building energy simula
|
|
12
12
|
python = ">=3.10,<3.13"
|
13
13
|
ifcopenshell = "^0.8.1.post1"
|
14
14
|
pydantic = "^2.10.6"
|
15
|
-
trano = "^0.1.
|
15
|
+
trano = "^0.1.50"
|
16
16
|
shapely = "^2.0.7"
|
17
17
|
typer = "^0.12.5"
|
18
18
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|