Changelog for 0.78.5, release bump
[slapos.git] / setup.py
1 ##############################################################################
2 #
3 # Copyright (c) 2010-2013 Vifib SARL and Contributors. All Rights Reserved.
4 #
5 # WARNING: This program as such is intended to be used by professional
6 # programmers who take the whole responsibility of assessing all potential
7 # consequences resulting from its eventual inadequacies and bugs
8 # End users who are looking for a ready-to-use solution with commercial
9 # guarantees and support are strongly adviced to contract a Free Software
10 # Service Company
11 #
12 # This program is Free Software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License
14 # as published by the Free Software Foundation; either version 3
15 # of the License, or (at your option) any later version.
16 #
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 #
26 ##############################################################################
27 from setuptools import setup, find_packages
28 import glob
29 import os
30
31 version = '0.78.5'
32 name = 'slapos.cookbook'
33 long_description = open("README.txt").read() + "\n" + \
34 open("CHANGES.txt").read() + "\n"
35
36 for f in sorted(glob.glob(os.path.join('slapos', 'recipe', 'README.*.txt'))):
37 long_description += '\n' + open(f).read() + '\n'
38
39 # extras_requires are not used because of
40 # https://bugs.launchpad.net/zc.buildout/+bug/85604
41 setup(name=name,
42 version=version,
43 description="SlapOS recipes.",
44 long_description=long_description,
45 classifiers=[
46 "Framework :: Buildout :: Recipe",
47 "Programming Language :: Python",
48 ],
49 keywords='slapos recipe',
50 license='GPLv3',
51 namespace_packages=['slapos', 'slapos.recipe'],
52 packages=find_packages(),
53 include_package_data=True,
54 install_requires=[
55 'hexagonit.recipe.download',
56 'lxml', # for full blown python interpreter
57 'netaddr', # to manipulate on IP addresses
58 'setuptools', # namespaces
59 'inotifyx', # to watch filesystem changes (used in lockfile)
60 'lock_file', #another lockfile implementation for multiprocess
61 'slapos.core', # uses internally
62 # 'slapos.toolbox', # needed for libcloud, cloudmgr, disabled for now
63 'xml_marshaller', # need to communication with slapgrid
64 'zc.buildout', # plays with buildout
65 'zc.recipe.egg', # for scripts generation
66 'pytz', # for timezone database
67 ],
68 zip_safe=True,
69 entry_points={
70 'zc.buildout': [
71 'addresiliency = slapos.recipe.addresiliency:Recipe',
72 'agent = slapos.recipe.agent:Recipe',
73 'apache.frontend = slapos.recipe.apache_frontend:Recipe',
74 'apache.zope.backend = slapos.recipe.apache_zope_backend:Recipe',
75 'apacheperl = slapos.recipe.apacheperl:Recipe',
76 'apachephp = slapos.recipe.apachephp:Recipe',
77 'apachephpconfigure = slapos.recipe.apachephpconfigure:Recipe',
78 'apacheproxy = slapos.recipe.apacheproxy:Recipe',
79 'boinc = slapos.recipe.boinc:Recipe',
80 'boinc.app = slapos.recipe.boinc:App',
81 'boinc.client = slapos.recipe.boinc:Client',
82 'bonjourgrid = slapos.recipe.bonjourgrid:Recipe',
83 'bonjourgrid.client = slapos.recipe.bonjourgrid:Client',
84 'certificate_authority = slapos.recipe.certificate_authority:Recipe',
85 'certificate_authority.request = slapos.recipe.certificate_authority:Request',
86 'check_page_content = slapos.recipe.check_page_content:Recipe',
87 'check_port_listening = slapos.recipe.check_port_listening:Recipe',
88 'check_url_available = slapos.recipe.check_url_available:Recipe',
89 'cloud9 = slapos.recipe.cloud9:Recipe',
90 'cloudooo.test = slapos.recipe.erp5_test:CloudoooRecipe',
91 'condor = slapos.recipe.condor:Recipe',
92 'condor.submit = slapos.recipe.condor:AppSubmit',
93 'configurationfile = slapos.recipe.configurationfile:Recipe',
94 'cron = slapos.recipe.dcron:Recipe',
95 'cron.d = slapos.recipe.dcron:Part',
96 'davstorage = slapos.recipe.davstorage:Recipe',
97 'downloader = slapos.recipe.downloader:Recipe',
98 'dropbear = slapos.recipe.dropbear:Recipe',
99 'dropbear.add_authorized_key = slapos.recipe.dropbear:AddAuthorizedKey',
100 'dropbear.client = slapos.recipe.dropbear:Client',
101 'dumpmdb = slapos.recipe.dumpmdb:Recipe',
102 'duplicity = slapos.recipe.duplicity:Recipe',
103 'egg_test = slapos.recipe.erp5_test:EggTestRecipe',
104 'equeue = slapos.recipe.equeue:Recipe',
105 'erp5.bootstrap = slapos.recipe.erp5_bootstrap:Recipe',
106 'erp5.promise = slapos.recipe.erp5_promise:Recipe',
107 'erp5.test = slapos.recipe.erp5_test:Recipe',
108 'erp5.update = slapos.recipe.erp5_update:Recipe',
109 'erp5scalabilitytestbed = slapos.recipe.erp5scalabilitytestbed:Recipe',
110 'erp5testnode = slapos.recipe.erp5testnode:Recipe',
111 'firefox = slapos.recipe.firefox:Recipe',
112 'fontconfig = slapos.recipe.fontconfig:Recipe',
113 'generate.mac = slapos.recipe.generatemac:Recipe',
114 'generate.password = slapos.recipe.generatepassword:Recipe',
115 'generic.cloudooo = slapos.recipe.generic_cloudooo:Recipe',
116 'generic.kumofs = slapos.recipe.generic_kumofs:Recipe',
117 'generic.memcached = slapos.recipe.generic_memcached:Recipe',
118 'generic.mysql = slapos.recipe.generic_mysql:Recipe',
119 'generic.mysql.wrap_update_mysql = slapos.recipe.generic_mysql:WrapUpdateMySQL',
120 'generic.mysql.wrap_mysqld = slapos.recipe.generic_mysql:WrapMySQLd',
121 'generic.varnish = slapos.recipe.generic_varnish:Recipe',
122 'generic.zope = slapos.recipe.generic_zope:Recipe',
123 'generic.zope.zeo.client = slapos.recipe.generic_zope_zeo_client:Recipe',
124 'gitinit = slapos.recipe.gitinit:Recipe',
125 'haproxy = slapos.recipe.haproxy:Recipe',
126 'helloworld = slapos.recipe.helloworld:Recipe',
127 'importmdb = slapos.recipe.importmdb:Recipe',
128 'ipv4toipv6 = slapos.recipe.6tunnel:FourToSix',
129 'ipv6toipv4 = slapos.recipe.6tunnel:SixToFour',
130 'java = slapos.recipe.java:Recipe',
131 'kumofs = slapos.recipe.kumofs:Recipe',
132 'kvm = slapos.recipe.kvm:Recipe',
133 'kvm.frontend = slapos.recipe.kvm_frontend:Recipe',
134 'lamp = slapos.recipe.lamp:Request',
135 'lamp.generic = slapos.recipe.lampgeneric:Recipe',
136 'lamp.request = slapos.recipe.lamp:Request',
137 'lamp.simple = slapos.recipe.lamp:Simple',
138 'lamp.static = slapos.recipe.lamp:Static',
139 'libcloud = slapos.recipe.libcloud:Recipe',
140 'libcloudrequest = slapos.recipe.libcloudrequest:Recipe',
141 'lockfile = slapos.recipe.lockfile:Recipe',
142 'logrotate = slapos.recipe.logrotate:Recipe',
143 'logrotate.d = slapos.recipe.logrotate:Part',
144 'memcached = slapos.recipe.memcached:Recipe',
145 'mkdirectory = slapos.recipe.mkdirectory:Recipe',
146 'mioga.instantiate = slapos.recipe.mioga.instantiate:Recipe',
147 'mydumper = slapos.recipe.mydumper:Recipe',
148 'mysql = slapos.recipe.mysql:Recipe',
149 'nbdserver = slapos.recipe.nbdserver:Recipe',
150 'neoppod.admin = slapos.recipe.neoppod:Admin',
151 'neoppod.master = slapos.recipe.neoppod:Master',
152 'neoppod.storage = slapos.recipe.neoppod:Storage',
153 'nosqltestbed = slapos.recipe.nosqltestbed:NoSQLTestBed',
154 'notifier = slapos.recipe.notifier:Recipe',
155 'notifier.callback = slapos.recipe.notifier:Callback',
156 'notifier.notify = slapos.recipe.notifier:Notify',
157 'novnc = slapos.recipe.novnc:Recipe',
158 'onetimeupload = slapos.recipe.onetimeupload:Recipe',
159 'pbs = slapos.recipe.pbs:Recipe',
160 'postgres = slapos.recipe.postgres:Recipe',
161 'postgres.export = slapos.recipe.postgres.backup:ExportRecipe',
162 'postgres.import = slapos.recipe.postgres.backup:ImportRecipe',
163 'proactive = slapos.recipe.proactive:Recipe',
164 'publish = slapos.recipe.publish:Recipe',
165 'publish.serialised = slapos.recipe.publish:Serialised',
166 'publishsection = slapos.recipe.publish:PublishSection',
167 'publishurl = slapos.recipe.publishurl:Recipe',
168 'redis.server = slapos.recipe.redis:Recipe',
169 'request = slapos.recipe.request:Recipe',
170 'request.serialised = slapos.recipe.request:Serialised',
171 'request.edge = slapos.recipe.request:RequestEdge',
172 'requestoptional = slapos.recipe.request:RequestOptional',
173 'reverseproxy.nginx = slapos.recipe.reverse_proxy_nginx:Recipe',
174 'seleniumrunner = slapos.recipe.seleniumrunner:Recipe',
175 'sheepdogtestbed = slapos.recipe.sheepdogtestbed:SheepDogTestBed',
176 'shell = slapos.recipe.shell:Recipe',
177 'shellinabox = slapos.recipe.shellinabox:Recipe',
178 'signalwrapper= slapos.recipe.signal_wrapper:Recipe',
179 'simplelogger = slapos.recipe.simplelogger:Recipe',
180 'siptester = slapos.recipe.siptester:SipTesterRecipe',
181 'slapconfiguration = slapos.recipe.slapconfiguration:Recipe',
182 'slapconfiguration.serialised = slapos.recipe.slapconfiguration:Serialised',
183 'slapcontainer = slapos.recipe.container:Recipe',
184 'slapmonitor = slapos.recipe.slapmonitor:MonitorRecipe',
185 'slapmonitor-xml = slapos.recipe.slapmonitor:MonitorXMLRecipe',
186 'slapreport = slapos.recipe.slapreport:Recipe',
187 'slaprunner = slapos.recipe.slaprunner:Recipe',
188 'slaprunner.test = slapos.recipe.slaprunner:Test',
189 'slaprunner.export = slapos.recipe.slaprunner.backup:ExportRecipe',
190 'slaprunner.import = slapos.recipe.slaprunner.backup:ImportRecipe',
191 'softwaretype = slapos.recipe.softwaretype:Recipe',
192 'sphinx= slapos.recipe.sphinx:Recipe',
193 'sshkeys_authority = slapos.recipe.sshkeys_authority:Recipe',
194 'sshkeys_authority.request = slapos.recipe.sshkeys_authority:Request',
195 'stunnel = slapos.recipe.stunnel:Recipe',
196 'symbolic.link = slapos.recipe.symbolic_link:Recipe',
197 'tidstorage = slapos.recipe.tidstorage:Recipe',
198 'trac = slapos.recipe.trac:Recipe',
199 'urlparse = slapos.recipe._urlparse:Recipe',
200 'uuid = slapos.recipe._uuid:Recipe',
201 'vifib = slapos.recipe.vifib:Recipe',
202 'waitfor = slapos.recipe.waitfor:Recipe',
203 'webchecker = slapos.recipe.web_checker:Recipe',
204 'wrapper = slapos.recipe.wrapper:Recipe',
205 'xvfb = slapos.recipe.xvfb:Recipe',
206 'xwiki = slapos.recipe.xwiki:Recipe',
207 'zabbixagent = slapos.recipe.zabbixagent:Recipe',
208 'zimbra.kvm = slapos.recipe.zimbra_kvm:Recipe',
209 'zeo = slapos.recipe.zeo:Recipe',
210 ],
211 'slapos.recipe.nosqltestbed.plugin': [
212 'kumo = slapos.recipe.nosqltestbed.kumo:KumoTestBed',
213 ],
214 },
215 )
216