forked from collective/collective.xmpp.chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.45 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 distribute_setup import use_setuptools
from setuptools import setup, find_packages
import os
use_setuptools()
version = '0.3.dev0'
setup(name='collective.xmpp.chat',
version=version,
description="XMPP-based instant Messaging for Plone",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
],
keywords='xmpp chat messaging',
author='JC Brand',
author_email='[email protected]',
url='http://svn.plone.org/svn/collective/',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['collective', 'collective.xmpp'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'collective.xmpp.core',
'collective.js.jqueryui == 1.8.16.9'
],
extras_require = {
"sphinx": [ "Sphinx >=1.0",
"repoze.sphinx.autointerface",
],
"test": ['plone.app.testing[robot]'],
},
entry_points="""
[z3c.autoinclude.plugin]
target = plone
""",
setup_requires=["PasteScript", "setuptools_git >= 0.3"],
paster_plugins=["ZopeSkel"],
)