This repository has been archived by the owner on May 18, 2023. It is now read-only.
forked from getninjas/celery-executor
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
52 lines (44 loc) · 1.34 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
long_description = '\n\n'.join((
readme,
history,
))
requirements = [
'celery<=4.4.7',
'asgiref',
]
setup_requirements = [
'setuptools>=38.6.0',
]
setup(
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="Celery pool to run coroutine tasks",
install_requires=requirements,
license="Apache Software License 2.0",
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
include_package_data=True,
keywords='celery asyncio pool python3 background-jobs concurrency',
name='celery-pool-asyncio',
packages=find_packages(),
setup_requires=setup_requirements,
test_suite='tests',
#tests_require=test_requirements,
url='https://github.com/kai3341/celery-pool-asyncio',
version='0.2.0',
zip_safe=True,
)