forked from ggozad/jarn.xmpp.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.24 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
from setuptools import setup, find_packages
import os
version = '0.35-dev'
setup(name='jarn.xmpp.core',
version=version,
description="Core package for jarn.xmpp",
long_description=open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Plone",
"Intended Audience :: Developers",
"Programming Language :: Python",
],
keywords='plone xmpp twisted microblogging',
author='Yiorgis Gozadinos',
author_email='ggozad@jarn.com',
url='https://github.com/ggozad/jarn.xmpp.core',
license='GPL',
packages=find_packages(),
namespace_packages=['jarn', 'jarn.xmpp'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'BeautifulSoup',
'plone.app.registry',
'plone.app.z3cform',
'jarn.xmpp.twisted',
'jarn.jsi18n'
],
extras_require = {
'test': [
'plone.app.testing',
]
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)