#!/usr/bin/env python

import sys, os
sys.path.insert(0, os.path.join(os.getcwd(),'src/python'))

from distutils.core import setup

setup(name="dbutils",
	version= "1.2.4",
	description="PimenTech dbutils library.",
	author="PimenTech",
	author_email="info@pimentech.net",
	url="http://www.pimentech.fr/pimentech/en/site/technologies/outils",
	packages=[
		'dbutils',
	],
	package_dir = {'': 'src/python'},
)

