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
|
Rev | Line | |
---|
[118572c] | 1 | from distutils.core import setup |
---|
| 2 | |
---|
| 3 | setup(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'], |
---|
[0ada33c] | 10 | scripts=['ogclient'], |
---|
[118572c] | 11 | data_files=[('cfg', ['cfg/ogclient.json']), |
---|
[29d3d06] | 12 | ('', ['COPYING'])] |
---|
[118572c] | 13 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.