aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-09 15:01:12 -0500
committerJesús <heckyel@hyperbola.info>2019-12-09 15:01:12 -0500
commitfc8cb7ad9cbfd9fb5b9dd0d60eaeb9c1d4b4316b (patch)
treec566bfb4e7620b3f162b497fef646b3c43fa66a7 /setup.py
downloadhypervideo-gui-fc8cb7ad9cbfd9fb5b9dd0d60eaeb9c1d4b4316b.tar.lz
hypervideo-gui-fc8cb7ad9cbfd9fb5b9dd0d60eaeb9c1d4b4316b.tar.xz
hypervideo-gui-fc8cb7ad9cbfd9fb5b9dd0d60eaeb9c1d4b4316b.zip
first commit
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..14f8fc2
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,19 @@
+# coding: utf-8
+
+from distutils.core import setup
+
+from hypervideo_gui import __version__, __license__
+
+
+setup(
+ author="Jesús E.",
+ author_email="heckyel@hyperbola.info",
+ name="hypervideo_gui",
+ description="Simple Hypervideo Downloader GUI",
+ version=__version__,
+ license=__license__,
+ url="https://libregit.org/heckyel/hypervideo-gui",
+ packages=[
+ 'hypervideo_gui',
+ ]
+)