1
2 """
3
4 @author: Fabio Erculiani <lxnay@sabayonlinux.org>
5 @contact: lxnay@sabayonlinux.org
6 @copyright: Fabio Erculiani
7 @license: GPL-2
8
9 B{Entropy Framework interface}.
10 This is the Entropy Framework Python package.
11 Entropy is a framework for creation of package management applications,
12 als featuring a Portage-compatible binary Package Manager built
13 on top of it.
14
15 Code can be divided into 3 main chunks: client, server and services.
16
17 - B{entropy.client}: contains the client interface of the
18 Gentoo Portage-compatible package manager and a User Generated Content
19 client-side framework.
20 - B{entropy.server}: contains the server interface of the
21 Gentoo Portage-compatibile package manager.
22 - B{entropy.services}: contains Remote Services interfaces (through
23 a Python-based secure RPC mechanism) like User Generated Content,
24 Server-side Repository management and general Repository services.
25
26 """
27