2015-01-28 00:43:36 +01:00
|
|
|
import os
|
2021-06-03 15:20:39 +02:00
|
|
|
|
|
|
|
from setuptools import setup
|
2015-01-28 00:43:36 +01:00
|
|
|
|
2021-09-02 14:08:20 +02:00
|
|
|
# Change directory since setuptools uses relative paths
|
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
2015-01-28 00:43:36 +01:00
|
|
|
|
2021-05-27 16:23:02 +02:00
|
|
|
setup(
|
|
|
|
name="api_clients",
|
|
|
|
version="2.0.0",
|
|
|
|
description="LibreTime API Client",
|
|
|
|
url="http://github.com/LibreTime/Libretime",
|
|
|
|
author="LibreTime Contributors",
|
|
|
|
license="AGPLv3",
|
|
|
|
packages=["api_clients"],
|
|
|
|
install_requires=[
|
|
|
|
"configobj",
|
2021-06-22 17:14:24 +02:00
|
|
|
"python-dateutil>=2.7.0",
|
2021-06-30 18:41:14 +02:00
|
|
|
"requests",
|
2021-05-27 16:23:02 +02:00
|
|
|
],
|
|
|
|
zip_safe=False,
|
|
|
|
)
|