2022-07-22 12:49:21 +02:00
|
|
|
from setuptools import find_packages, setup
|
2015-01-28 00:43:36 +01:00
|
|
|
|
2023-12-22 21:19:04 +01:00
|
|
|
version = "3.2.1" # x-release-please-version
|
2023-12-22 19:56:41 +01:00
|
|
|
|
2021-05-27 16:23:02 +02:00
|
|
|
setup(
|
2021-10-03 14:57:45 +02:00
|
|
|
name="libretime-api-client",
|
2023-12-22 19:56:41 +01:00
|
|
|
version=version,
|
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-24 18:23:55 +02:00
|
|
|
"requests>=2.31.0,<2.32",
|
2021-05-27 16:23:02 +02:00
|
|
|
],
|
2022-02-22 18:19:16 +01:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
2023-10-16 10:40:46 +02:00
|
|
|
"requests-mock>=1.10.0,<2",
|
|
|
|
"types-python-dateutil>=2.8.1,<3",
|
|
|
|
"types-requests>=2.31.0,<3",
|
2022-02-22 18:19:16 +01:00
|
|
|
],
|
|
|
|
},
|
2021-05-27 16:23:02 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|