diff --git a/Guide-GroundSystem.md b/Guide-GroundSystem.md index 1149c6f..0291aee 100644 --- a/Guide-GroundSystem.md +++ b/Guide-GroundSystem.md @@ -39,6 +39,14 @@ Installing and running cFS Ground System on Ubuntu: The historically included instructions for running on macOS or CentOS are included at the bottom of this document for reference. Please note that instructions have not been maintained. Welcoming instruction contributions if any of these are your platform of choice. +### Install Ground System executable +This works for both macOS and Ubuntu systems. +``` +The requirements.txt file is located directly inside the cFS-GroundSystem/ +$ pip3 install -r requirements.txt +$ pip3 install -e relative/path/to/cFS-GroundSystem +$ cFS-GroundSystem +``` ## Adding new flight software application to ground system command GUI This section was made to help developers who are adding core Flight Software (cFS) Applications to the Python-based Ground System that comes with this cFS distribution. @@ -157,3 +165,4 @@ $ yum install -y qt qt-demos qt-designer qt4 qt4-designer ``` $ python GroundSystem.py ``` + diff --git a/setup.py b/setup.py index f95033d..7dd13ba 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,14 @@ from setuptools import setup +from _version import __version__ as _version setup( - name='GroundSystem', + name='cFS-GroundSystem', packages=['Subsystems','Subsystems.tlmGUI','Subsystems.cmdGui','Subsystems.cmdUtil'], include_package_data=True, - version='0.0.0', + version=_version, entry_points={ 'console_scripts':[ - 'startg=GroundSystem:main' + 'cFS-GroundSystem=GroundSystem:main' ] }, )