From 39dcc1e61550067b8612cfb0f93b5cad4ff08d6e Mon Sep 17 00:00:00 2001 From: Karamaz0V1 Date: Tue, 11 Sep 2018 11:03:20 +0200 Subject: [PATCH] Create setup.py --- .gitignore | 1 + python/setup.py | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 python/setup.py diff --git a/.gitignore b/.gitignore index 97aee11..a303274 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ __pycache__ data/result.tif tmp result +*.egg-info/ diff --git a/python/setup.py b/python/setup.py new file mode 100644 index 0000000..6e5c739 --- /dev/null +++ b/python/setup.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# \file setup.py +# \brief TODO +# \author Florent Guiotte +# \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'], + )