forked from reebalazs/plone_hyphenator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (50 loc) · 1.24 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
52
53
54
55
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '0.6.dev0'
setup(name='plone_hyphenator',
version=version,
description="",
long_description=read('README.md'),
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Zope2",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
keywords='plone',
author='Enfold Systems, Inc.',
author_email='[email protected]',
url='',
license='',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=[],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'Products.PloneTestCase',
]
),
install_requires=[
'setuptools',
"plone.portlets",
"plone.app.portlets",
"plone.app.form>=1.1",
"plone.i18n",
'zope.component',
'zope.formlib',
'zope.i18nmessageid',
'zope.interface',
'zope.schema',
'Zope2',
],
dependency_links=[
],
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)