-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.34 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
from setuptools import setup, find_packages
version = "2.1.3.dev0"
setup(
name="collective.confirmableforms",
version=version,
description="A Plone add on to simplify form confirmation by e-mail.",
long_description=(open("README.rst").read() + "\n" + open("CHANGES.rst").read()),
# Get more strings from https://pypi.org/classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords="PloneFormGen confirmation email",
author="Vincent Pretre",
author_email="[email protected]",
url="https://github.com/zestsoftware/collective.confirmableforms",
license="GPL",
packages=find_packages(exclude=["ez_setup"]),
namespace_packages=["collective"],
include_package_data=True,
zip_safe=False,
install_requires=[
"setuptools",
"Products.PloneFormGen",
"collective.depositbox",
"collective.monkeypatcher",
],
extras_require={
"test": [
"Products.PloneTestCase",
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)