-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
44 lines (42 loc) · 1.33 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
from setuptools import setup, find_packages
import os
version = '0.4.dev0'
setup(name='collective.xmpp.core',
version=version,
description="Enables core functionality for XMPP-enabled Plone add-ons.",
long_description=open("README.txt").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Plone :: 4.1",
"Framework :: Plone :: 4.2",
"Framework :: Plone :: 4.3",
"Intended Audience :: Developers",
"Programming Language :: Python",
],
keywords='plone xmpp twisted',
author='Plone Community',
author_email='[email protected]',
url='https://github.com/collective/collective.xmpp.core',
license='GPL',
packages=find_packages(),
namespace_packages=['collective', 'collective.xmpp'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'BeautifulSoup',
'Twisted',
'wokkel>0.6.3',
'Products.UserAndGroupSelectionWidget',
],
extras_require = {
'test': [
'plone.app.testing',
]
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
)