-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (59 loc) · 2.25 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
56
57
58
59
60
61
62
from setuptools import setup, find_packages
import sys, os
version = '0.8.0'
try:
readme = open('README.rst').read()
changes = open("CHANGES.txt").read()
readme = "%s\n%s" % (changes, readme)
except:
readme = ""
setup(name='opencore-listen',
version=version,
description="Listen is a mailing list product for Plone",
long_description=readme,
# Get more strings from
# https://pypi.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Plone',
'Framework :: Plone :: 3.3',
'Framework :: Zope2',
'Framework :: Zope3',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Topic :: Communications :: Email :: Mailing List Servers',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Office/Business :: Office Suites',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='zope plone mailing list product socialplanning opencore listen',
author='Robert Marianski, Alec Mitchell, Chris Abraham, Rob Miller, Ethan Jucovy',
author_email='listen-dev at lists.coactivate.org',
url='https://www.coactivate.org/projects/listen/',
license='GPL',
packages=find_packages(),
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
dependency_links=[
],
install_requires=[
'setuptools',
'Products.MailBoxer==0.1vendor',
'Products.ManageableIndex==0.1vendor',
'Products.OFolder==0.1vendor',
],
entry_points="""
# -*- Entry points: -*-
""",
)