libretime/worker/setup.py
Jonas L 2edbf15bf4
feat(worker): rename service and package to libretime-worker (#2065)
BREAKING CHANGE: The `libretime-celery` python package and service was renamed to `libretime-worker`. Make sure to remove the old python package and service.
2022-08-20 08:13:30 +02:00

28 lines
763 B
Python

from setuptools import find_packages, setup
setup(
name="libretime-worker",
version="0.1",
description="LibreTime Worker",
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=find_packages(exclude=["*tests*", "*fixtures*"]),
python_requires=">=3.6",
install_requires=[
"celery==4.4.7",
"kombu==4.6.11",
"mutagen>=1.45.1,<1.46",
"requests>=2.25.1,<2.29",
],
extras_require={
"dev": [],
},
zip_safe=False,
)