Skip to content

Commit ef82fd7

Browse files
committed
Update setup.py and title image added
1 parent 8e37a63 commit ef82fd7

File tree

4 files changed

+440
-3
lines changed

4 files changed

+440
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# pycosim
1+
# pyCoSim
2+
![PyCoSim](/resources/PyCoSimTitle.svg)
23

34
pycosim is a package for running co-simulation using cosim-cli from [Open Simulation Project](https://open-simulation-platform.github.io/). It provides an user friendly interface for creating the simulation setups such as logging configuration, scenario, interfaces between models and initial values.
45

resources/PyCoSimTitle.png

1.71 MB
Loading

resources/PyCoSimTitle.svg

Lines changed: 430 additions & 0 deletions
Loading

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
from setuptools import setup
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='pyCoSim',
5-
version='0.1.0',
8+
version='0.1.3',
69
description='Python library running co-simulation using cosim-cli from Open Simulation Platform',
10+
long_description=long_description,
11+
long_description_content_type="text/markdown",
12+
url="https://github.com/kevinksyTRD/pycosim",
713
author='Kevin Koosup Yum',
814
author_email='[email protected]',
915
license="Apache License 2.0",
@@ -16,7 +22,7 @@
1622
packages=['pycosim'],
1723
install_requires=[
1824
'pyyaml',
19-
'pyOSPParse',
25+
'pyOSPParser',
2026
'pandas',
2127
'numpy',
2228
'xmlschema'

0 commit comments

Comments
 (0)