2020-01-16 14:33:44 +01:00
|
|
|
from __future__ import print_function
|
2015-01-28 00:43:36 +01:00
|
|
|
from setuptools import setup
|
|
|
|
from subprocess import call
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
|
|
|
|
script_path = os.path.dirname(os.path.realpath(__file__))
|
2020-01-16 14:33:44 +01:00
|
|
|
print(script_path)
|
2015-01-28 00:43:36 +01:00
|
|
|
os.chdir(script_path)
|
|
|
|
|
|
|
|
setup(name='api_clients',
|
|
|
|
version='1.0',
|
|
|
|
description='Airtime API Client',
|
|
|
|
url='http://github.com/sourcefabric/Airtime',
|
|
|
|
author='sourcefabric',
|
|
|
|
license='AGPLv3',
|
|
|
|
packages=['api_clients'],
|
|
|
|
scripts=[],
|
|
|
|
install_requires=[
|
|
|
|
# 'amqplib',
|
|
|
|
# 'anyjson',
|
|
|
|
# 'argparse',
|
|
|
|
'configobj'
|
|
|
|
# 'docopt',
|
|
|
|
# 'kombu',
|
|
|
|
# 'mutagen',
|
|
|
|
# 'poster',
|
|
|
|
# 'PyDispatcher',
|
|
|
|
# 'pyinotify',
|
|
|
|
# 'pytz',
|
|
|
|
# 'wsgiref'
|
|
|
|
],
|
|
|
|
zip_safe=False,
|
2020-01-16 14:33:44 +01:00
|
|
|
data_files=[])
|