-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
90 lines (87 loc) · 3.32 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from setuptools import find_packages
from setuptools import setup
version = '4.2.12.dev0'
setup(name='Products.PloneMeeting',
version=version,
description="Official meetings management",
long_description=open("README.rst").read() + "\n" + open("CHANGES.rst").read(),
# Get more strings from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Other Scripting Engines",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business",
],
keywords='plone official meetings management egov communesplone imio plonegov',
author='Gauthier Bastien',
author_email='[email protected]',
url='https://www.imio.be/nos-applications/ia-delib',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
extras_require=dict(test=['imio.helpers[test]',
'ipdb',
'plone.app.testing',
'profilehooks',
'plone.app.robotframework',
'Products.CMFPlacefulWorkflow'],
templates=['Genshi', ],
# temp backward compat
amqp=[]),
install_requires=[
'appy > 0.8.0',
'archetypes.schematuning',
'beautifulsoup4',
'natsort',
'setuptools',
'Plone',
'Pillow',
'collective.behavior.internalnumber',
'collective.ckeditor',
'collective.contact.plonegroup',
'collective.datagridcolumns',
'collective.dexteritytextindexer',
'collective.js.fancytree',
'collective.js.jqueryui',
'collective.js.tablednd',
'collective.iconifieddocumentactions',
'collective.messagesviewlet',
'collective.upgrade',
'collective.usernamelogger',
'communesplone.layout',
'dexterity.localrolesfield',
'ftw.labels',
'imio.annex',
'imio.pm.locales',
'imio.pm.ws',
'imio.dashboard>=2.0',
'imio.helpers[lxml]',
'imio.migrator',
'imio.pyutils',
'imio.zamqp.pm',
'imio.webspellchecker',
'plone.app.lockingbehavior',
'plone.app.versioningbehavior',
'plone.directives.form',
'plonemeeting.restapi',
'plonetheme.imioapps',
'Products.CPUtils',
'Products.DataGridField',
'Products.PasswordStrength',
'Products.cron4plone', ],
entry_points={},
)