summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2020-11-04 12:48:53 +0000
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-11-06 12:05:56 +0100
commit29d3d06a9c1cf74497f86be95ed626a03e0af32b (patch)
treeb7d3f405e948f04294e9c8a4523fa332de3a754e
parentb138fbc0db906f790b984ee520e9175b2ea974f2 (diff)
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")
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index eeaf5ff..cefd789 100644
--- a/setup.py
+++ b/setup.py
@@ -9,5 +9,5 @@ setup(name='ogclient',
packages=['src', 'src.linux', 'src.virtual'],
scripts=['ogclient'],
data_files=[('cfg', ['cfg/ogclient.json']),
- ('', ['LICENSE'])]
+ ('', ['COPYING'])]
)