#!/usr/bin/env python

#
# (c)2005 LIRIS - University Claude Bernard Lyon 1
# http://liris.cnrs.fr/
#
# Author: Pierre-Antoine CHAMPIN
# http://champin.net/
#
# This software is distributed under the terms of the GNU LGPL v2.1.
# See LICENSE.txt for more details.
#

try:
    from setuptools import setup
except:
    from distutils.core import setup


from cross import VERSION

setup(name =        'cross',
      version =     VERSION,
      description = 'OWL wrapper for relationnal databases',
      author =      'Pierre-Antoine Champin',
      author_email ='cross@champin.net',
      url =         'http://champin.net/dev/cross/',

      packages = [
        'cross',
        'cross.datasource',
        'cross.datasource._mxodbc',
        'cross.utils',
      ],
      long_description = """ Cross is a wrapper allowing to view a relational database as OWL statements.
The schema is viewed as a set of classes an properties representing the tables,
columns and foreign keys; the data is viewed as a set of individuals with
literal attributes, and related with one another by object properties.""",

      keywords = "ontology rdf owl semantic-web relational databases odbc",
      license="GNU LGPL v2.1",
      platforms="All",

    # egg specific 
        extras_require = {
            'rdflib': ["rdflib>=2.2.3"],
        },

     )
