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",
|
|
|
|
"kombu==4.6.10",
|
|
|
|
"configobj",
|
2021-11-17 10:33:33 +01:00
|
|
|
"mutagen>=1.31.0",
|
|
|
|
"requests>=2.7.0",
|
2021-09-02 14:08:20 +02:00
|
|
|
],
|
2019-08-18 17:45:48 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|