24 lines
556 B
Python
24 lines
556 B
Python
from __future__ import print_function
|
|
from setuptools import setup
|
|
from subprocess import call
|
|
import sys
|
|
import os
|
|
|
|
script_path = os.path.dirname(os.path.realpath(__file__))
|
|
print(script_path)
|
|
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=[
|
|
'configobj'
|
|
],
|
|
zip_safe=False,
|
|
data_files=[])
|