2022-07-25 21:19:41 +02:00
|
|
|
from setuptools import find_packages, setup
|
2015-06-10 21:04:49 +02:00
|
|
|
|
2019-08-18 17:45:48 +02:00
|
|
|
setup(
|
2022-08-20 08:13:30 +02:00
|
|
|
name="libretime-worker",
|
2023-02-20 12:18:33 +01:00
|
|
|
version="3.0.2",
|
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*"]),
|
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",
|
2022-10-09 21:14:28 +02:00
|
|
|
"mutagen>=1.45.1,<1.47",
|
2023-05-03 21:30:39 +02:00
|
|
|
"requests>=2.25.1,<2.31",
|
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-02-02 19:14:15 +01:00
|
|
|
"requests-mock>=1.10.0,<1.11",
|
2023-05-05 17:31:17 +02:00
|
|
|
"types-requests>=2.25.1,<2.31",
|
2022-09-09 11:13:16 +02:00
|
|
|
],
|
2023-02-26 23:24:29 +01:00
|
|
|
"sentry": [
|
2023-05-15 18:06:43 +02:00
|
|
|
"sentry-sdk>=1.15.0,<1.24",
|
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,
|
|
|
|
)
|