forked from plone/Products.CMFPlacefulWorkflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.06 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
from setuptools import setup, find_packages
version = '1.5.8.dev0'
setup(name='Products.CMFPlacefulWorkflow',
version=version,
description="Workflow policies for CMF and Plone",
long_description=open("README.txt").read() + "\n" +
open("CHANGES.txt").read(),
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='CMF Plone Zope2 workflow',
author='Encolpe DEGOUTE',
author_email='[email protected]',
url='http://pypi.python.org/pypi/Products.CMFPlacefulWorkflow',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'zope.component',
'zope.interface',
'zope.i18nmessageid',
'Products.CMFCore',
'Products.CMFPlone',
'Products.GenericSetup',
'zope.testing',
'Products.PloneTestCase',
],
)