2014-03-05 18:15:25 +01:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(name='airtime_analyzer',
|
|
|
|
version='0.1',
|
|
|
|
description='Airtime Analyzer Worker and File Importer',
|
|
|
|
url='http://github.com/sourcefabric/Airtime',
|
|
|
|
author='Albert Santoni',
|
|
|
|
author_email='albert.santoni@sourcefabric.org',
|
|
|
|
license='MIT',
|
|
|
|
packages=['airtime_analyzer'],
|
|
|
|
scripts=['bin/airtime_analyzer'],
|
|
|
|
install_requires=[
|
|
|
|
'mutagen',
|
|
|
|
'python-magic',
|
|
|
|
'pika',
|
|
|
|
'nose',
|
2014-03-26 20:06:48 +01:00
|
|
|
'coverage',
|
|
|
|
'mock',
|
2014-03-05 18:15:25 +01:00
|
|
|
'python-daemon',
|
|
|
|
'requests',
|
|
|
|
],
|
|
|
|
zip_safe=False)
|