Commit ff8884f6 authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

Update license to LGPL v3



With the permission of Romain Degez, CTO of Smartjog.

Signed-off-by: default avatarSébastien Luttringer <sebastien.luttringer@smartjog.com>
parent 060d8651
Loading
Loading
Loading
Loading

COPYRIGHT

0 → 100644
+1 −0
Original line number Diff line number Diff line
Copytight © 2010-2012 Smartjog
+0 −0

File moved.

+4 −2
Original line number Diff line number Diff line
Files: *
Copyright: © 2010 Smartjog
License: LGPL3
Copyright: © 2012 Smartjog
License: LGPL-3
 See /usr/share/common-licenses/LGPL-3 for a full copy of the license.
+19 −1
Original line number Diff line number Diff line
#!/usr/bin/env python

# This file is part of CloudControl.
#
# CloudControl is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# CloudControl 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with CloudControl.  If not, see <http://www.gnu.org/licenses/>.


from setuptools import setup
import os

+16 −0
Original line number Diff line number Diff line
# This file is part of CloudControl.
#
# CloudControl is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# CloudControl 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with CloudControl.  If not, see <http://www.gnu.org/licenses/>.


""" This module implements a Remote Procedure Call system using socket objects
    as transport. The main feature of this RPC is to be bidirectionnal: both
    client and server can serve remote procedure for its peer.
Loading