Move python_apps/airtime-celery/ to worker/
This commit is contained in:
parent
08f13d850c
commit
58e275147f
7 changed files with 0 additions and 0 deletions
28
worker/setup.py
Normal file
28
worker/setup.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
import os
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
# Change directory since setuptools uses relative paths
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
|
||||
setup(
|
||||
name="libretime-celery",
|
||||
version="0.1",
|
||||
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=["airtime-celery"],
|
||||
python_requires=">=3.6",
|
||||
install_requires=[
|
||||
"celery==4.4.7",
|
||||
"kombu==4.6.10",
|
||||
"configobj",
|
||||
],
|
||||
zip_safe=False,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue