-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (38 loc) · 1.19 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
import os
from setuptools import find_packages
from setuptools import setup
version = open(os.path.join(
'Products', 'CMFNotification', 'version.txt')).read().strip()
description = open('README.txt').read().strip()
long_description = '\n\n'.join((
open(os.path.join(
'Products', 'CMFNotification', 'README.txt')).read().strip(),
open(os.path.join("docs", "HISTORY.txt")).read().strip()))
setup(
name='Products.CMFNotification',
version=version,
description=description,
long_description=long_description,
classifiers=(
'Framework :: Plone',
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
),
keywords='CMFNotification plone notification e-mail',
author='Pilot Systems',
author_email='[email protected]',
url='http://plone.org/products/cmfnotification',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=(
'setuptools',
'Plone >= 3.0',
),
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)