-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.3 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
from setuptools import setup, find_packages
import os
version = '0.1'
setup(name='gites.calendar',
version=version,
description="",
long_description=open("README.md").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"],
keywords='',
author='',
author_email='',
url='',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['gites'],
include_package_data=True,
zip_safe=False,
install_requires=[
'collective.zamqp',
'zope.app.testing>=3.5',
'setuptools',
'gites.core',
'gites.db',
'affinitic.db',
'dateutil',
'simplejson',
'p4a.calendar',
'p4a.plonecalendar',
'p4a.ploneevent',
'p4a.subtyper',
'zope.app.i18n'],
entry_points={'console_scripts':
['checkCalendarActivity = gites.calendar.scripts.activity:main',
'exportCalendarEvents = gites.calendar.scripts.calendar:main',
'importCalendarEventsFromWalhebCalendarDaemon = gites.calendar.scripts.calendarimport:main']})