Files
whipper-gui/setup.py
Frederik “Freso” S. Olesen 5e3b10eaae Small cleanups of setup.py (#102)
* Limit number of imports in setup.py.

* Make setup.py PEP8 compliant.
2017-01-06 21:14:29 +01:00

19 lines
567 B
Python

from setuptools import setup, find_packages
from morituri import __version__ as morituri_version
setup(
name="whipper",
version=morituri_version,
description="a secure cd ripper preferring accuracy over speed",
author=['Thomas Vander Stichele', 'Joe Lametta', 'Samantha Baldwin'],
maintainer=['Joe Lametta', 'Samantha Baldwin'],
url='https://github.com/JoeLametta/whipper',
license='GPL3',
packages=find_packages(),
entry_points={
'console_scripts': [
'whipper = morituri.command.main:main'
]
}
)