2015-06-10 21:04:49 +02:00
|
|
|
import os
|
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
|
2021-09-02 14:08:20 +02:00
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
2019-08-18 17:45:48 +02:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name="airtime-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",
|
|
|
|
},
|
2019-08-18 17:45:48 +02:00
|
|
|
license="MIT",
|
|
|
|
packages=["airtime-celery"],
|
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",
|
|
|
|
],
|
2019-08-18 17:45:48 +02:00
|
|
|
zip_safe=False,
|
|
|
|
)
|