2021-05-27 15:21:02 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
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',
|
2020-01-30 14:47:36 +01:00
|
|
|
version='2.0.0',
|
|
|
|
description='LibreTime API Client',
|
|
|
|
url='http://github.com/LibreTime/Libretime',
|
|
|
|
author='LibreTime Contributors',
|
2015-01-28 00:43:36 +01:00
|
|
|
license='AGPLv3',
|
|
|
|
packages=['api_clients'],
|
|
|
|
scripts=[],
|
|
|
|
install_requires=[
|
2020-01-30 14:47:36 +01:00
|
|
|
'configobj',
|
|
|
|
'python-dateutil',
|
2015-01-28 00:43:36 +01:00
|
|
|
],
|
|
|
|
zip_safe=False,
|
2020-01-16 14:33:44 +01:00
|
|
|
data_files=[])
|