blob: 14f8fc2878d5430dd1637321d391472f87cd8f92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
]
)
|