setup.py 11.4 KB
Newer Older
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
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
##############################################################################
#
# Copyright (c) 2010-2013 Vifib SARL and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
##############################################################################
27
from setuptools import setup, find_packages
28 29
import glob
import os
30

31
version = '1.0.36.dev0'
32
name = 'slapos.cookbook'
33 34
long_description = open("README.rst").read() + "\n" + \
    open("CHANGES.rst").read() + "\n"
35

36
for f in sorted(glob.glob(os.path.join('slapos', 'recipe', 'README.*.rst'))):
37
  long_description += '\n' + open(f).read() + '\n'
38

39 40
# extras_requires are not used because of
#   https://bugs.launchpad.net/zc.buildout/+bug/85604
41 42
setup(name=name,
      version=version,
43
      description="SlapOS recipes.",
44 45 46 47 48
      long_description=long_description,
      classifiers=[
          "Framework :: Buildout :: Recipe",
          "Programming Language :: Python",
        ],
49 50 51
      maintainer="Nexedi",
      maintainer_email="info@nexedi.com",
      url="https://lab.nexedi.com/nexedi/slapos",
Łukasz Nowak's avatar
Łukasz Nowak committed
52
      keywords='slapos recipe',
53 54 55 56 57
      license='GPLv3',
      namespace_packages=['slapos', 'slapos.recipe'],
      packages=find_packages(),
      include_package_data=True,
      install_requires=[
58
        'jsonschema',
59
        'hexagonit.recipe.download',
60
        'lxml', # for full blown python interpreter
61 62
        'netaddr', # to manipulate on IP addresses
        'setuptools', # namespaces
63
        'inotifyx', # to watch filesystem changes (used in lockfile)
64
        'lock_file', #another lockfile implementation for multiprocess
65
        'slapos.core', # uses internally
Łukasz Nowak's avatar
Łukasz Nowak committed
66
#        'slapos.toolbox', # needed for libcloud, cloudmgr, disabled for now
67 68 69
        'xml_marshaller', # need to communication with slapgrid
        'zc.buildout', # plays with buildout
        'zc.recipe.egg', # for scripts generation
70
        'pytz', # for timezone database
71 72
        ],
      zip_safe=True,
73 74
      entry_points={
        'zc.buildout': [
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
75
          'addresiliency = slapos.recipe.addresiliency:Recipe',
76
          'accords = slapos.recipe.accords:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
77
          'apache.zope.backend = slapos.recipe.apache_zope_backend:Recipe',
78
          'apacheperl = slapos.recipe.apacheperl:Recipe',
Antoine Catton's avatar
Antoine Catton committed
79
          'apachephp = slapos.recipe.apachephp:Recipe',
80
          'apachephpconfigure = slapos.recipe.apachephpconfigure:Recipe',
Antoine Catton's avatar
Antoine Catton committed
81
          'apacheproxy = slapos.recipe.apacheproxy:Recipe',
82
          'boinc = slapos.recipe.boinc:Recipe',
83 84
          'boinc.app = slapos.recipe.boinc:App',
          'boinc.client = slapos.recipe.boinc:Client',
85 86
          'bonjourgrid = slapos.recipe.bonjourgrid:Recipe',
          'bonjourgrid.client = slapos.recipe.bonjourgrid:Client',
87
          'certificate_authority = slapos.recipe.certificate_authority:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
88 89
          'certificate_authority.request = slapos.recipe.certificate_authority:Request',
          'check_page_content = slapos.recipe.check_page_content:Recipe',
90
          'check_port_listening = slapos.recipe.check_port_listening:Recipe',
91
          'check_url_available = slapos.recipe.check_url_available:Recipe',
92
          'check_parameter = slapos.recipe.check_parameter:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
93
          'cloud9 = slapos.recipe.cloud9:Recipe',
94
          'cloudooo.test = slapos.recipe.erp5_test:CloudoooRecipe',
95
          'condor = slapos.recipe.condor:Recipe',
96
          'condor.submit = slapos.recipe.condor:AppSubmit',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
97
          'copyfilelist = slapos.recipe.copyfilelist:Recipe',
98
          'cron = slapos.recipe.dcron:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
99
          'cron.d = slapos.recipe.dcron:Part',
100
          'davstorage = slapos.recipe.davstorage:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
101
          'dropbear = slapos.recipe.dropbear:Recipe',
Antoine Catton's avatar
Antoine Catton committed
102
          'dropbear.add_authorized_key = slapos.recipe.dropbear:AddAuthorizedKey',
Antoine Catton's avatar
Antoine Catton committed
103
          'dropbear.client = slapos.recipe.dropbear:Client',
104
          'duplicity = slapos.recipe.duplicity:Recipe',
105
          'egg_test = slapos.recipe.erp5_test:EggTestRecipe',
Antoine Catton's avatar
Antoine Catton committed
106
          'equeue = slapos.recipe.equeue:Recipe',
107 108 109
          'erp5.bootstrap = slapos.recipe.erp5_bootstrap:Recipe',
          'erp5.promise = slapos.recipe.erp5_promise:Recipe',
          'erp5.test = slapos.recipe.erp5_test:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
110 111
          'erp5scalabilitytestbed = slapos.recipe.erp5scalabilitytestbed:Recipe',
          'erp5testnode = slapos.recipe.erp5testnode:Recipe',
112 113
          'firefox = slapos.recipe.firefox:Recipe',
          'fontconfig = slapos.recipe.fontconfig:Recipe',
114
          'free_port = slapos.recipe.free_port:Recipe',
115
          'generate.mac = slapos.recipe.generatemac:Recipe',
116
          'generate.password = slapos.recipe.generatepassword:Recipe',
117
          'generic.cloudooo = slapos.recipe.generic_cloudooo:Recipe',
118 119 120
          'generic.kumofs = slapos.recipe.generic_kumofs:Recipe',
          'generic.memcached = slapos.recipe.generic_memcached:Recipe',
          'generic.mysql = slapos.recipe.generic_mysql:Recipe',
121 122
          'generic.mysql.wrap_update_mysql = slapos.recipe.generic_mysql:WrapUpdateMySQL',
          'generic.mysql.wrap_mysqld = slapos.recipe.generic_mysql:WrapMySQLd',
123 124 125
          'generic.varnish = slapos.recipe.generic_varnish:Recipe',
          'generic.zope = slapos.recipe.generic_zope:Recipe',
          'generic.zope.zeo.client = slapos.recipe.generic_zope_zeo_client:Recipe',
126
          'gitinit = slapos.recipe.gitinit:Recipe',
127
          'haproxy = slapos.recipe.haproxy:Recipe',
128 129
          'ipv4toipv6 = slapos.recipe.6tunnel:FourToSix',
          'ipv6toipv4 = slapos.recipe.6tunnel:SixToFour',
130
          'jsondump = slapos.recipe.jsondump:Recipe',
131
          'kumofs = slapos.recipe.kumofs:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
132 133
          'kvm.frontend = slapos.recipe.kvm_frontend:Recipe',
          'lamp = slapos.recipe.lamp:Request',
134
          'lamp.generic = slapos.recipe.lampgeneric:Recipe',
135 136 137 138
          'lamp.request = slapos.recipe.lamp:Request',
          'lamp.simple = slapos.recipe.lamp:Simple',
          'lamp.static = slapos.recipe.lamp:Static',
          'libcloud = slapos.recipe.libcloud:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
139
          'libcloudrequest = slapos.recipe.libcloudrequest:Recipe',
Antoine Catton's avatar
Antoine Catton committed
140
          'lockfile = slapos.recipe.lockfile:Recipe',
141
          'logrotate = slapos.recipe.logrotate:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
142
          'logrotate.d = slapos.recipe.logrotate:Part',
143
          'memcached = slapos.recipe.memcached:Recipe',
144
          'mkdirectory = slapos.recipe.mkdirectory:Recipe',
145
          'mioga.instantiate = slapos.recipe.mioga.instantiate:Recipe',
146 147 148
          'mydumper = slapos.recipe.mydumper:Recipe',
          'mysql = slapos.recipe.mysql:Recipe',
          'nbdserver = slapos.recipe.nbdserver:Recipe',
Vincent Pelletier's avatar
Vincent Pelletier committed
149 150 151
          'neoppod.admin = slapos.recipe.neoppod:Admin',
          'neoppod.master = slapos.recipe.neoppod:Master',
          'neoppod.storage = slapos.recipe.neoppod:Storage',
152
          'nosqltestbed = slapos.recipe.nosqltestbed:NoSQLTestBed',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
153
          'notifier = slapos.recipe.notifier:Recipe',
Antoine Catton's avatar
Antoine Catton committed
154 155
          'notifier.callback = slapos.recipe.notifier:Callback',
          'notifier.notify = slapos.recipe.notifier:Notify',
156
          'novnc = slapos.recipe.novnc:Recipe',
157
          'onetimeupload = slapos.recipe.onetimeupload:Recipe',
158
          'pbs = slapos.recipe.pbs:Recipe',
159
          'postgres = slapos.recipe.postgres:Recipe',
160 161
          'postgres.export = slapos.recipe.postgres.backup:ExportRecipe',
          'postgres.import = slapos.recipe.postgres.backup:ImportRecipe',
162
          'proactive = slapos.recipe.proactive:Recipe',
Łukasz Nowak's avatar
Łukasz Nowak committed
163
          'publish = slapos.recipe.publish:Recipe',
164
          'publish.serialised = slapos.recipe.publish:Serialised',
165
          'publish-early = slapos.recipe.publish_early:Recipe',
166
          'publishsection = slapos.recipe.publish:PublishSection',
167
          'publishurl = slapos.recipe.publishurl:Recipe',
168
          'readline = slapos.recipe.readline:Recipe',
169
          'redis.server = slapos.recipe.redis:Recipe',
170
          'request = slapos.recipe.request:Recipe',
171
          'request.serialised = slapos.recipe.request:Serialised',
172
          'request.edge = slapos.recipe.request:RequestEdge',
173
          'requestoptional = slapos.recipe.request:RequestOptional',
174
          're6stnet.registry = slapos.recipe.re6stnet:Recipe',
175
          'reverseproxy.nginx = slapos.recipe.reverse_proxy_nginx:Recipe',
176
          'seleniumrunner = slapos.recipe.seleniumrunner:Recipe',
177
          'sheepdogtestbed = slapos.recipe.sheepdogtestbed:SheepDogTestBed',
178
          'shell = slapos.recipe.shell:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
179
          'shellinabox = slapos.recipe.shellinabox:Recipe',
180
          'signalwrapper= slapos.recipe.signal_wrapper:Recipe',
181
          'simplelogger = slapos.recipe.simplelogger:Recipe',
182
          'simplehttpserver = slapos.recipe.simplehttpserver:Recipe',
183 184
          'siptester = slapos.recipe.siptester:SipTesterRecipe',
          'slapconfiguration = slapos.recipe.slapconfiguration:Recipe',
185
          'slapconfiguration.serialised = slapos.recipe.slapconfiguration:Serialised',
186
          'slapconfiguration.jsondump = slapos.recipe.slapconfiguration:JsonDump',
Antoine Catton's avatar
Antoine Catton committed
187
          'slapcontainer = slapos.recipe.container:Recipe',
188
          'softwaretype = slapos.recipe.softwaretype:Recipe', # BBB
Romain Courteaud's avatar
Romain Courteaud committed
189
          'sphinx= slapos.recipe.sphinx:Recipe',
190
          'squid = slapos.recipe.squid:Recipe',
191
          'sshkeys_authority = slapos.recipe.sshkeys_authority:Recipe',
Cédric de Saint Martin's avatar
Cédric de Saint Martin committed
192
          'sshkeys_authority.request = slapos.recipe.sshkeys_authority:Request',
193
          'stunnel = slapos.recipe.stunnel:Recipe',
194
          'switch-softwaretype = slapos.recipe.switch_softwaretype:Recipe',
195 196
          'symbolic.link = slapos.recipe.symbolic_link:Recipe',
          'tidstorage = slapos.recipe.tidstorage:Recipe',
197
          'trac = slapos.recipe.trac:Recipe',
198
          'urlparse = slapos.recipe._urlparse:Recipe',
Antoine Catton's avatar
Antoine Catton committed
199
          'uuid = slapos.recipe._uuid:Recipe',
200
          'userinfo = slapos.recipe.userinfo:Recipe',
Antoine Catton's avatar
Antoine Catton committed
201
          'waitfor = slapos.recipe.waitfor:Recipe',
202
          'webchecker = slapos.recipe.web_checker:Recipe',
Antoine Catton's avatar
Antoine Catton committed
203
          'wrapper = slapos.recipe.wrapper:Recipe',
Romain Courteaud's avatar
Romain Courteaud committed
204
          'xvfb = slapos.recipe.xvfb:Recipe',
205
          'xwiki = slapos.recipe.xwiki:Recipe',
206
          'zabbixagent = slapos.recipe.zabbixagent:Recipe',
207
          'zimbra.kvm = slapos.recipe.zimbra_kvm:Recipe',
Łukasz Nowak's avatar
Łukasz Nowak committed
208
          'zeo = slapos.recipe.zeo:Recipe',
209 210
          'zero-knowledge.read = slapos.recipe.zero_knowledge:ReadRecipe',
          'zero-knowledge.write = slapos.recipe.zero_knowledge:WriteRecipe'
211 212 213 214 215
        ],
        'slapos.recipe.nosqltestbed.plugin': [
          'kumo = slapos.recipe.nosqltestbed.kumo:KumoTestBed',
        ],
      },
216
      test_suite='slapos.test',
217 218 219 220
      tests_require=[
        'jsonschema',
        'mock',
      ],
221
    )