-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (55 loc) · 1.85 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
from setuptools import setup, find_packages
import os
version = '0.4.dev0'
setup(name='gites.walhebcalendar',
version=version,
description="",
long_description=open("README.md").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python"],
keywords='',
author='Gites de Wallonie',
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=['gites'],
include_package_data=True,
zip_safe=False,
entry_points={'console_scripts': [
'walhebclient = gites.walhebcalendar.client:main'],
},
extras_require=dict(
test=['zope.testing', 'plone.testing', 'mockito'],
docs=['z3c.recipe.sphinxdoc',
'docutils',
'repoze.sphinx.autointerface',
'collective.sphinx.includechangelog',
'sphinxcontrib-sdedit',
'Pillow',
'Sphinx',
'collective.sphinx.includedoc']),
install_requires=[
'ZSI',
'Zope2',
'affinitic.pwmanager',
'collective.zamqp',
'collective.monkeypatcher',
'collective.autopermission',
'grokcore.component',
'five.grok',
'z3c.soap',
'z3c.autoinclude',
'python-dateutil',
'plone.memoize',
'setuptools',
'Products.GenericSetup',
'Products.PluginRegistry',
'Products.PluggableAuthService',
'zope.app.pagetemplate',
'zope.app.container',
'zope.app.publication',
'zope.app.component',
'walhebcalendar.db'])