2022-01-22 18:09:40 +01:00
|
|
|
from os import chdir
|
|
|
|
from pathlib import Path
|
2021-06-03 15:20:39 +02:00
|
|
|
|
|
|
|
from setuptools import setup
|
2015-06-10 21:04:49 +02:00
|
|
|
|
2015-06-24 01:02:55 +02:00
|
|
|
# Change directory since setuptools uses relative paths
|
2022-01-22 18:09:40 +01:00
|
|
|
here = Path(__file__).parent.resolve()
|
|
|
|
chdir(here)
|
2019-08-18 17:45:48 +02:00
|
|
|
|
|
|
|
setup(
|
2021-10-03 14:57:45 +02:00
|
|
|
name="libretime-celery",
|
2019-08-18 17:45:48 +02:00
|
|
|
version="0.1",
|
2021-09-02 14:25:50 +02:00
|
|
|
description="LibreTime Celery",
|
|
|
|
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",
|
2021-12-24 00:47:44 +01:00
|
|
|
packages=["libretime_worker"],
|
2021-09-10 13:47:20 +02:00
|
|
|
python_requires=">=3.6",
|
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-07-16 22:15:25 +02:00
|
|
|
"mutagen>=1.45.1,<1.46",
|
2022-07-16 22:16:48 +02:00
|
|
|
"requests>=2.25.1,<2.29",
|
2021-09-02 14:08:20 +02:00
|
|
|
],
|
2022-02-22 20:03:31 +01:00
|
|
|
extras_require={
|
|
|
|
"dev": [
|
|
|
|
f"libretime-shared @ file://localhost{here.parent / 'shared'}",
|
|
|
|
],
|
|
|
|
},
|
2019-08-18 17:45:48 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|