forked from collective/collective.recipe.celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.6 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
from setuptools import setup, find_packages
import os
version = '1.0.1dev'
tests_require = ['zope.testing', 'z3c.recipe.scripts', 'manuel']
setup(name='collective.recipe.celery',
version=version,
description="A buildout recipe to install and configure Celery",
long_description=open("README.txt").read()
+ "\n" +
open(os.path.join("docs", "HISTORY.txt")).read()
+ "\n" +
open(os.path.join("collective", "recipe", "celery",
"README.txt")).read(),
classifiers=[
'Framework :: Buildout :: Recipe',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='',
author='Thomas Buchberger',
author_email='[email protected]',
url='https://github.com/collective/collective.recipe.celery',
license='GPL',
use_2to3 = True,
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective', 'collective.recipe'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zc.buildout',
'zc.recipe.egg',
],
tests_require=tests_require,
extras_require=dict(tests=tests_require),
entry_points = {
'zc.buildout': ['default = collective.recipe.celery:Recipe']},
)