source: ogClient-Git/setup.py @ 900a1c8

Last change on this file since 900a1c8 was 29d3d06, checked in by OpenGnSys Support Team <soporte-og@…>, 4 years ago

Fix license name in setup.py

The file containing the license was being referred as LICENSE when it
was renamed to COPYING.

Fixes: 173fabb ("Rename LICENSE to COPYING")

  • Property mode set to 100644
File size: 443 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.linux', '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.