21 lines
476 B
Python
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'],
|
|
)
|