2022-07-25 21:19:41 +02:00
|
|
|
from setuptools import find_packages, setup
|
2015-06-10 21:04:49 +02:00
|
|
|
|
2024-05-05 23:45:39 +02:00
|
|
|
version = "4.1.0" # x-release-please-version
|
2023-12-22 19:19:12 +01:00
|
|
|
|
2019-08-18 17:45:48 +02:00
|
|
|
setup(
|
2022-08-20 08:13:30 +02:00
|
|
|
name="libretime-worker",
|
2023-12-22 19:19:12 +01:00
|
|
|
version=version,
|
2022-08-20 08:13:30 +02:00
|
|
|
description="LibreTime Worker",
|
2021-09-02 14:25:50 +02:00
|
|
|
author="LibreTime Contributors",
|
|
|
|
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",
|
|
|
|
},
|
2019-08-18 17:45:48 +02:00
|
|
|
license="MIT",
|
2022-07-25 21:19:41 +02:00
|
|
|
packages=find_packages(exclude=["*tests*", "*fixtures*"]),
|
2024-04-13 21:03:57 +02:00
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
|
|
|
"libretime-worker=libretime_worker.main:cli",
|
|
|
|
]
|
|
|
|
},
|
2022-10-10 23:34:00 +02:00
|
|
|
python_requires=">=3.8",
|
2021-09-02 14:08:20 +02:00
|
|
|
install_requires=[
|
|
|
|
"celery==4.4.7",
|
2022-04-25 13:09:40 +02:00
|
|
|
"kombu==4.6.11",
|
2023-09-08 15:18:33 +02:00
|
|
|
"mutagen>=1.45.1,<1.48",
|
2023-05-24 18:23:55 +02:00
|
|
|
"requests>=2.31.0,<2.32",
|
2021-09-02 14:08:20 +02:00
|
|
|
],
|
2022-02-22 20:03:31 +01:00
|
|
|
extras_require={
|
2022-09-09 11:13:16 +02:00
|
|
|
"dev": [
|
2023-10-16 10:40:46 +02:00
|
|
|
"requests-mock>=1.10.0,<2",
|
|
|
|
"types-requests>=2.31.0,<3",
|
2022-09-09 11:13:16 +02:00
|
|
|
],
|
2023-02-26 23:24:29 +01:00
|
|
|
"sentry": [
|
2023-10-16 10:40:46 +02:00
|
|
|
"sentry-sdk>=1.15.0,<2",
|
2023-02-26 23:24:29 +01:00
|
|
|
],
|
2022-02-22 20:03:31 +01:00
|
|
|
},
|
2019-08-18 17:45:48 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|