Create setup.py
This commit is contained in:
parent
5e9be93fa9
commit
39dcc1e615
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ __pycache__
|
||||
data/result.tif
|
||||
tmp
|
||||
result
|
||||
*.egg-info/
|
||||
|
20
python/setup.py
Normal file
20
python/setup.py
Normal file
@ -0,0 +1,20 @@
|
||||
#!/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'],
|
||||
)
|
Loading…
Reference in New Issue
Block a user