diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 19 |
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', + ] +) |