libretime/worker/setup.py

33 lines
836 B
Python
Raw Normal View History

from os import chdir
from pathlib import Path
from setuptools import setup
# Change directory since setuptools uses relative paths
here = Path(__file__).parent.resolve()
chdir(here)
setup(
name="libretime-celery",
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",
},
license="MIT",
packages=["libretime_worker"],
python_requires=">=3.6",
2021-09-02 14:08:20 +02:00
install_requires=[
"celery==4.4.7",
"kombu==4.6.10",
"configobj",
"mutagen>=1.31.0",
"requests>=2.7.0",
2021-09-02 14:08:20 +02:00
],
zip_safe=False,
)