-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 803 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 803 Bytes
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
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='celery-tasktree',
version='0.3.4',
description='Celery Tasktree module',
author='NetAngels team',
author_email='info@netangels.ru',
url='https://github.com/NetAngels/celery-tasktree',
long_description = read('README.rst'),
license = 'BSD License',
py_modules=['celery_tasktree'],
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)