* Whipper is now invoked by its name ("whipper") instead of "rip"
* README has been rewritten to provide a better experience and updated information
17 lines
475 B
Python
17 lines
475 B
Python
from setuptools import setup, find_packages
|
|
from os import system, makedirs, environ
|
|
|
|
setup(
|
|
name="whipper",
|
|
version="0.3.0",
|
|
description="a secure cd ripper preferring accuracy over speed",
|
|
author=['Thomas Vander Stichele', 'Joe Lametta', 'Samantha Baldwin'],
|
|
maintainer=['Joe Lametta', 'Samantha Baldwin'],
|
|
packages=find_packages(),
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'whipper = morituri.rip.main:main'
|
|
]
|
|
}
|
|
)
|