#!/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="libcommon",
	version= "1.0.12",
	description="PimenTech pythonlibcommon library.",
	author="PimenTech",
	author_email="info@pimentech.net",
	url="http://www.pimentech.fr/pimentech/en/site/technologies/outils",
	packages=[
		'libcommon',
	],
	package_dir = {'': 'src/python'},
)

