triskele/python/setup.py
2018-09-11 11:03:20 +02:00

21 lines
476 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
# \file setup.py
# \brief TODO
# \author Florent Guiotte <florent.guiotte@gmail.com>
# \version 0.1
# \date 11 sept. 2018
#
# TODO details
from distutils.core import setup
setup(name='triskele',
version='1.0',
description='Python wrapper for Triskele',
author='Florent Guiotte',
author_email='florent.guiotte@uhb.fr',
url='https://git.guiotte.fr/Florent/Triskele',
packages=['triskele'],
)