31 lines
755 B
Python
31 lines
755 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='ripcd',
|
|
version='2.0',
|
|
description='Tool for automatically ripping audio CDs',
|
|
author='Dustin C. Hatch',
|
|
author_email='dustin@hatch.name',
|
|
url='http://dustin.hatch.name/',
|
|
license='GPL-3+',
|
|
py_modules=['ripcd'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ripcd=ripcd:main',
|
|
],
|
|
},
|
|
install_requires=[
|
|
# cdparanoia OR cd-paranoia
|
|
'discid', # libdiscid should be preferred, though
|
|
# flac
|
|
'linuxapi',
|
|
'musicbrainzngs>=0.6',
|
|
'mutagen',
|
|
'pillow',
|
|
'pyudev',
|
|
],
|
|
dependency_links=[
|
|
'git+https://git.pyrocufflink.blue/dustin/linuxapi.git#egg=linuxapi',
|
|
]
|
|
)
|