47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
|
from setuptools import setup
|
||
|
from subprocess import call
|
||
|
import sys
|
||
|
|
||
|
# Allows us to avoid installing the upstart init script when deploying airtime_analyzer
|
||
|
# on Airtime Pro:
|
||
|
if '--no-init-script' in sys.argv:
|
||
|
data_files = []
|
||
|
sys.argv.remove('--no-init-script') # super hax
|
||
|
else:
|
||
|
data_files = [('/etc/init', ['install/airtime-playout.conf', 'install/airtime-liquidsoap.conf'])]
|
||
|
print data_files
|
||
|
|
||
|
setup(name='airtime-playout',
|
||
|
version='0.1',
|
||
|
description='Airtime Analyzer Worker and File Importer',
|
||
|
url='http://github.com/sourcefabric/Airtime',
|
||
|
author='sourcefabric',
|
||
|
license='AGPLv3',
|
||
|
packages=['pypo'],
|
||
|
scripts=[
|
||
|
'bin/airtime-playout',
|
||
|
'bin/airtime-liquidsoap'
|
||
|
],
|
||
|
install_requires=[
|
||
|
'amqplib',
|
||
|
'anyjson',
|
||
|
'argparse',
|
||
|
'configobj',
|
||
|
'docopt',
|
||
|
'kombu',
|
||
|
'mutagen',
|
||
|
'poster',
|
||
|
'PyDispatcher',
|
||
|
'pyinotify',
|
||
|
'pytz',
|
||
|
'wsgiref'
|
||
|
],
|
||
|
zip_safe=False,
|
||
|
data_files=data_files)
|
||
|
|
||
|
# Reload the initctl config so that "service start airtime_analyzer" works
|
||
|
if data_files:
|
||
|
print "Reloading initctl configuration"
|
||
|
call(['initctl', 'reload-configuration'])
|
||
|
print "Run \"sudo service airtime-playout start\" and \"sudo service airtime-liquidsoap start\""
|