19 lines
548 B
Python
19 lines
548 B
Python
from setuptools import setup, find_packages
|
|
from os import system, makedirs, environ
|
|
|
|
setup(
|
|
name="whipper",
|
|
version="0.4.0",
|
|
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'
|
|
]
|
|
}
|
|
)
|