forked from plone/plone.recipe.zope2instance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 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
42
43
44
from setuptools import setup, find_packages
name = "plone.recipe.zope2instance"
version = '4.2.21.dev0'
setup(
name=name,
version=version,
author="Hanno Schlichting",
author_email="hanno@hannosch.eu",
description="Buildout recipe for creating a Zope 2 instance",
long_description=((open('README.rst').read() + '\n' +
open('CHANGES.rst').read())),
license="ZPL 2.1",
keywords="zope2 buildout",
url='https://pypi.python.org/pypi/plone.recipe.zope2instance',
classifiers=[
"License :: OSI Approved :: Zope Public License",
"Framework :: Buildout",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Zope2",
"Programming Language :: Python",
"Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
],
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src'},
namespace_packages=['plone', 'plone.recipe'],
install_requires=[
'zc.buildout',
'setuptools',
'mailinglogger',
'zc.recipe.egg',
'Zope2 >= 2.12.1',
'ZODB3 >= 3.9',
],
zip_safe=False,
entry_points={'zc.buildout': ['default = %s:Recipe' % name]},
)