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",
|
|
|
|
author="LibreTime Contributors",
|
2021-09-02 14:25:50 +02:00
|
|
|
url="https://github.com/libretime/libretime",
|
|
|
|
project_urls={
|
|
|
|
"Bug Tracker": "https://github.com/libretime/libretime/issues",
|
|
|
|
"Documentation": "https://libretime.org",
|
|
|
|
"Source Code": "https://github.com/libretime/libretime",
|
|
|
|
},
|
2021-05-27 16:23:02 +02:00
|
|
|
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
|
|
|
],
|
2021-09-10 13:45:27 +02:00
|
|
|
extras_require={
|
|
|
|
"prod": [],
|
|
|
|
"dev": [
|
2021-09-10 14:41:51 +02:00
|
|
|
"mypy",
|
2021-09-10 13:45:27 +02:00
|
|
|
"pylint",
|
|
|
|
"pytest",
|
|
|
|
"pytest-cov",
|
|
|
|
"pytest-xdist",
|
|
|
|
],
|
|
|
|
},
|
2021-05-27 16:23:02 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|