1#! /usr/bin/env python
2
3# Cerealizer
4# Copyright (C) 2005-2007 Jean-Baptiste LAMY
5#
6# This program is free software.
7# It is available under the Python licence.
8
9import os.path, sys, distutils.core
10
11distutils.core.setup(name         = "Cerealizer",
12                     version      = "0.7",
13                     license      = "Python licence",
14                     description  = "A secure pickle-like module",
15                     long_description = """A secure pickle-like module.
16It support basic types (int, string, unicode, tuple, list, dict, set,...),
17old and new-style classes (you need to register the class for security), object cycles,
18and it can be extended to support C-defined type.""",
19                     author       = "Lamy Jean-Baptiste (Jiba)",
20                     author_email = "jibalamy@free.fr",
21                     url          = "http://home.gna.org/oomadness/en/cerealizer/index.html",
22                     classifiers  = [
23                       "Development Status :: 5 - Production/Stable",
24                       "Intended Audience :: Developers",
25                       "License :: OSI Approved :: Python Software Foundation License",
26                       "Programming Language :: Python",
27                       "Topic :: Security",
28                       "Topic :: Software Development :: Libraries :: Python Modules",
29                       ],
30
31                     package_dir  = {"cerealizer" : ""},
32                     packages     = ["cerealizer"],
33                     )
34