forked from wichert/collective.recipe.modwsgi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.41 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
from setuptools import setup, find_packages
import os
version = '2.2dev'
setup(name='collective.recipe.modwsgi',
version=version,
description='WSGI from buildout',
long_description=open('README.rst').read() + '\n' +
open(os.path.join('docs', 'HISTORY.txt')).read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Buildout :: Recipe',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Zope Public License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
keywords='wsgi buildout',
author='Wichert Akkerman',
author_email='[email protected]',
url='https://github.com/wichert/collective.recipe.modwsgi',
license='ZPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['collective', 'collective.recipe'],
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'zc.recipe.egg',
],
entry_points='''
[zc.buildout]
default = collective.recipe.modwsgi:Recipe
''',
)