source: ogClient-Git/setup.py

Last change on this file was f0aa3df, checked in by OpenGnSys Support Team <soporte-og@…>, 3 years ago

Rename 'linux' folder and operations to 'live'

ogLive related operations are named inside a 'Linux' folder, also its
python class is named OgLinuxOperations?. Rename every 'linux' occurrence
with live to further clarify this folder and operations.

Fixes: 1377acee ('Rename 'linux' mode to 'live' mode')

  • Property mode set to 100644
File size: 442 bytes
Line 
1from distutils.core import setup
2
3setup(name='ogclient',
4      version='1.0',
5      description='Client for the OpenGnsys ecosystem',
6      author='Soleta OpenGnsys Support Team',
7      author_email='soporte-og@soleta.eu',
8      url='https://github.com/opengnsys/ogClient',
9      packages=['src', 'src.live', 'src.virtual'],
10      scripts=['ogclient'],
11      data_files=[('cfg', ['cfg/ogclient.json']),
12                  ('', ['COPYING'])]
13)
Note: See TracBrowser for help on using the repository browser.