-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (38 loc) · 1.15 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
from setuptools import setup, find_packages
version = '1.0b4.dev0'
setup(
name='collective.beaker',
version=version,
description="Beaker integration for Zope and Plone",
long_description=(open("README.rst").read() + "\n" +
open("CHANGES.rst").read()),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='beaker zope plone caching sessions',
author='Martin Aspeli',
author_email='optilude@gmail.com',
url='https://github.com/collective/collective.beaker',
license='BSD',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['collective'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Beaker',
'zope.interface',
'zope.component',
'Zope2',
'zope.publisher',
],
extras_require={
'Zope2.10': ['ZPublisherEventsBackport'],
'tests': ['Products.PloneTestCase', 'collective.testcaselayer']
},
entry_points="""
""",
)