forked from collective/Products.PloneSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 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
42
43
44
45
46
from setuptools import find_packages
from setuptools import setup
import os
version = open(
os.path.join("Products", "PloneSurvey", "version.txt")
).read().strip()
description = "Plone Survey is an addon collecting data from people."
longdesc = open("README.rst").read()
longdesc += open(os.path.join("docs", "HISTORY.rst")).read()
setup(
name='Products.PloneSurvey',
version=version,
description=description,
long_description=longdesc,
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='Plone, Survey',
author='Michael Davis',
author_email='[email protected]',
url='http://plone.org/products/plonesurvey',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.CMFPlone',
'z3c.rml<2.6.0',
'reportlab<3.0',
],
extras_require={
"test": ["plone.app.testing", "collective.recaptcha", ],
},
entry_points="""
# -*- Entry points: -*-
""",
)