-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
56 lines (53 loc) · 1.78 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
from setuptools import setup, find_packages
version = '0.7.2.dev0'
long_description = (
open('README.txt').read()
+ '\n\n' +
'History\n'
'=======\n'
+ '\n\n' +
open('CHANGES.txt').read()
+ '\n')
setup(name='collective.noticeboard',
version=version,
description="A fancy noticeboard for Plone",
long_description=long_description,
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Framework :: Zope2",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7", ],
keywords='Plone javascript',
author='Philip Bauer',
author_email='[email protected]',
url='http://github.com/collective/collective.noticeboard',
license='gpl',
packages=find_packages('src', exclude=['ez_setup']),
namespace_packages=['collective'],
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Plone',
'collective.js.backbone',
'collective.js.underscore < 1.5.0',
'collective.js.jqueryui',
# -*- Extra requirements: -*-
],
extras_require={'test': ['plone.app.testing', 'plone.testing']},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)