sintonia/api-client/setup.py

35 lines
928 B
Python
Raw Normal View History

from os import chdir
from pathlib import Path
from setuptools import setup
2021-09-02 14:08:20 +02:00
# Change directory since setuptools uses relative paths
here = Path(__file__).parent.resolve()
chdir(here)
2021-05-27 16:23:02 +02:00
setup(
name="libretime-api-client",
2021-05-27 16:23:02 +02:00
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=["libretime_api_client"],
python_requires=">=3.6",
2021-05-27 16:23:02 +02:00
install_requires=[
"python-dateutil>=2.7.0",
2022-07-16 22:16:48 +02:00
"requests>=2.25.1,<2.29",
2021-05-27 16:23:02 +02:00
],
extras_require={
"dev": [
f"libretime-shared @ file://localhost{here.parent / 'shared'}",
],
},
2021-05-27 16:23:02 +02:00
zip_safe=False,
)