forked from plone/plone.app.workflowmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.65 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
45
46
47
48
49
50
51
from setuptools import find_packages
from setuptools import setup
version = '1.0a6'
setup(name='plone.app.workflowmanager',
version=version,
description="A workflow manager for Plone",
long_description=(
open("README.rst").read() + "\n" +
open("CHANGES.rst").read()
),
# Get more strings from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Other Scripting Engines",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone workflow manager gui',
author='Nathan Van Gheem',
author_email='[email protected]',
url='https://github.com/plone/plone.app.workflowmanager',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['plone', 'plone.app'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Plone',
'setuptools',
'plone.app.jquery>=1.7'
],
extras_require={
'test': [
'plone.app.testing',
'interlude',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)