-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 1.43 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 setuptools import setup, find_packages
import os
version = '4.2.2.dev0'
setup(name='Products.MeetingNamur',
version=version,
description="PloneMeeting profile for city of Namur",
long_description=open("README.rst").read() + "\n" + open("CHANGES.rst").read(),
classifiers=[
"Environment :: Web Environment",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords='',
author='Andre Nuyens',
author_email='[email protected]',
url='http://www.imio.be/produits/gestion-des-deliberations',
license='GPL',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['Products'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=['unittest2',
'zope.testing',
'plone.testing',
'plone.app.testing',
'plone.app.robotframework',
'Products.CMFPlacefulWorkflow',
'zope.testing',
'Products.PloneTestCase',
'Products.PloneMeeting[test]'],
templates=['Genshi', ]),
install_requires=[
'setuptools',
'Products.CMFPlone',
'Pillow',
'Products.PloneMeeting',
'Products.MeetingCommunes'],
entry_points={},
)