use setuptools, remove autohell, use raw make for src/
This commit is contained in:
16
setup.py
Normal file
16
setup.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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': [
|
||||
'rip = morituri.rip.main:main'
|
||||
]
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user