Skip to content

Commit 06fdb4d

Browse files
committed
📝 update setup and readme
1 parent 28e09e0 commit 06fdb4d

2 files changed

Lines changed: 41 additions & 3 deletions

File tree

‎README.md‎

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,46 @@
11
<p align="center">
22
<img src="https://raw.githubusercontent.com/BuildingEnergySimulationTools/modelitool/main/logo.svg" alt="modelitool" width="200"/>
3+
34
</p>
45

6+
[![PyPI](https://img.shields.io/pypi/v/modelitool?label=pypi%20package)](https://pypi.org/project/modelitool/)
7+
[![Static Badge](https://img.shields.io/badge/python-3.10_%7C_3.11-blue)](https://pypi.org/project/modelitool/)
8+
[![codecov](https://codecov.io/gh/BuildingEnergySimulationTools/modelitool/graph/badge.svg?token=6WYH76SCHQ)](https://codecov.io/gh/BuildingEnergySimulationTools/modelitool)
9+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
10+
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
11+
512
# Modelitool
613

7-
Python tools for modelica.
14+
Python tools based on [OMpython](https://github.com/OpenModelica/OMPython) to load, configure, run and read results from modelica files.
15+
16+
17+
18+
## Getting started
19+
20+
The source code is currently hosted on GitHub
21+
at: https://github.com/BuildingEnergySimulationTools/modelitool
22+
23+
Tutorials are available in the dedicated folder.
24+
25+
Released version are available at the Python Package Index (PyPI):
26+
27+
```
28+
# PyPI
29+
pip install modelitool
30+
```
31+
32+
### Sponsors
33+
<table style="border-collapse: collapse;">
34+
<tr style="border: 1px solid transparent;">
35+
<td width="150" >
36+
<img src="https://upload.wikimedia.org/wikipedia/commons/b/b7/Flag_of_Europe.svg" alt="eu_flag" width="150"/>
37+
</td>
38+
<td>
39+
The development of this library has been supported by METABUILDING LABS Project, which
40+
has received funding from the European Union’s Horizon 2020 Research and Innovation
41+
Programme under Grant Agreement No. 953193. The sole responsibility for the content of
42+
this library lies entirely with the author’s view. The European Commission is not
43+
responsible for any use that may be made of the information it contains.
44+
</td>
45+
</tr>
46+
</table>

‎setup.py‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="modelitool",
12-
version="0.2",
12+
version="0.1.0",
1313
description="Tools for Modelica",
1414
long_description=long_description,
1515
url="https://github.com/BuildingEnergySimulationTools/modelitool",
@@ -25,7 +25,6 @@
2525
"Topic :: Scientific/Engineering",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28-
"Programming Language :: Python :: 3.12",
2928
],
3029
python_requires=">=3.10",
3130
install_requires=[

0 commit comments

Comments
 (0)