-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
64 lines (62 loc) · 2.01 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
63
64
from setuptools import setup, find_packages
version = '1.2.dev0'
setup(name='ploneintranet.workspace',
version=version,
description="A Workspace implementation for ploneintranet",
long_description=open("README.rst").read() + "\n" +
open("CONTRIBUTORS.txt").read() + "\n" +
open("CHANGES.txt").read(),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='plone workspace collaboration intranet',
author='Plone Intranet Consortium',
author_email='',
url='https://github.com/ploneintranet/ploneintranet.workspace',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['ploneintranet'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Products.CMFPlacefulWorkflow',
'collective.workspace',
'plone.api>=1.2.1',
'plone.tiles',
'plone.app.blocks',
'plone.app.dexterity [grok]',
'plone.app.tiles',
'plone.namedfile [blobs]',
'Products.CMFPlacefulWorkflow',
'ploneintranet.invitations',
'ploneintranet.todo',
'plonesocial.activitystream',
'plonesocial.microblog',
],
extras_require={
'test': [
'mock',
'plone.app.contenttypes[test]',
'plone.app.testing',
'plone.app.robotframework',
'ploneintranet.theme',
'ploneintranet.docconv.client',
],
'develop': [
'Sphinx',
'zest.releaser',
],
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
setup_requires=[],
)