2022-07-22 12:49:21 +02:00
|
|
|
from setuptools import find_packages, setup
|
2015-01-28 00:43:36 +01:00
|
|
|
|
2021-05-27 16:23:02 +02:00
|
|
|
setup(
|
2021-10-03 14:57:45 +02:00
|
|
|
name="libretime-api-client",
|
2023-02-20 12:18:33 +01:00
|
|
|
version="3.0.2",
|
2021-05-27 16:23:02 +02:00
|
|
|
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",
|
2022-07-25 21:19:41 +02:00
|
|
|
packages=find_packages(exclude=["*tests*", "*fixtures*"]),
|
2022-08-09 14:42:43 +02:00
|
|
|
package_data={"": ["py.typed"]},
|
2022-10-10 23:34:00 +02:00
|
|
|
python_requires=">=3.8",
|
2021-05-27 16:23:02 +02:00
|
|
|
install_requires=[
|
2022-07-16 22:18:03 +02:00
|
|
|
"python-dateutil>=2.8.1,<2.9",
|
2023-05-03 21:30:39 +02:00
|
|
|
"requests>=2.25.1,<2.31",
|
2021-05-27 16:23:02 +02:00
|
|
|
],
|
2022-02-22 18:19:16 +01:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
2023-02-02 19:14:15 +01:00
|
|
|
"requests-mock>=1.10.0,<1.11",
|
|
|
|
"types-python-dateutil>=2.8.1,<2.9",
|
2023-05-05 17:31:17 +02:00
|
|
|
"types-requests>=2.25.1,<2.31",
|
2022-02-22 18:19:16 +01:00
|
|
|
],
|
|
|
|
},
|
2021-05-27 16:23:02 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|