forked from imankulov/celery-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 770 Bytes
/
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='celery-api',
version='0.1',
py_modules=['celery_api'],
url='https://github.com/imankulov/celery-api',
license='BSD',
author='Roman Imankulov',
author_email='[email protected]',
description='Celery API discovery module',
long_description=read('README.rst'),
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
),
install_requires=[
'celery>=3.0',
],
)