-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 793 Bytes
/
setup.py
File metadata and controls
21 lines (21 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name = 'spark_celery',
packages = ['spark_celery'],
version = '0.2',
description = 'A helper to allow Python Celery tasks to do work in a Spark job',
author = 'Greg Baker',
author_email = 'ggbaker@sfu.ca',
url = 'https://github.com/gregbaker/spark-celery',
download_url = 'https://codeload.github.com/gregbaker/spark-celery/zip/master',
keywords = ['spark', 'celery', 'bigdata'],
install_requires=['celery', 'kombu'],
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: System :: Distributed Computing',
],
)