aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2020-06-01 18:10:07 -0500
committerJesús <heckyel@hyperbola.info>2020-06-01 18:10:07 -0500
commit9bcdcbda2b5e34c204976e7b43de62f9ac7bd591 (patch)
tree01f5dfb56728728133795484110a9614cdaec9bf /setup.py
parent99f96dc8b20ebfaeb51019001771f138a02ff1cd (diff)
downloadlibrevideoconverter-9bcdcbda2b5e34c204976e7b43de62f9ac7bd591.tar.lz
librevideoconverter-9bcdcbda2b5e34c204976e7b43de62f9ac7bd591.tar.xz
librevideoconverter-9bcdcbda2b5e34c204976e7b43de62f9ac7bd591.zip
pep8
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 01b6f44..b41ceb4 100644
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,20 @@
import os
import sys
-version = '1.0.1'
+from lvc.variables import (
+ __version__
+)
+
# platform-independent arguments for setup()
setup_args = {
'name': 'librevideoconverter',
- 'description': 'A simple video converter for WebM (vp8, vp9), Ogg Theora, MP4 and others',
- 'author': 'Jesus Eduardo (Heckyel)',
+ 'description': 'A simple video converter for WebM, Ogg Theora and others',
+ 'author': 'Jesus E.',
'author_email': 'heckyel@riseup.net',
'url': 'https://notabug.org/heckyel/librevideoconverter',
- 'license': 'GPL',
- 'version': version,
+ 'license': 'GPL-3',
+ 'version': __version__,
'packages': [
'lvc',
'lvc.osx',
@@ -44,7 +47,7 @@ root_dir = os.path.abspath(os.path.dirname(__file__))
setup_dir = os.path.join(root_dir, 'setup-files', platform)
script_vars = {
- 'VERSION': version,
+ 'VERSION': __version__,
'ROOT_DIR': root_dir,
'SETUP_DIR': setup_dir,
'SETUP_ARGS': setup_args,