Add setup.py

This commit is contained in:
Florent Guiotte 2018-09-11 11:04:36 +02:00
parent fc891cdd4f
commit ffe21af127
2 changed files with 21 additions and 0 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ Enrichment/
.ipynb_checkpoints/
triskele
Untitled.ipynb
*.egg-info/

20
setup.py Normal file
View 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='ld2dap',
version='1.0',
description='Attribute Profiles description pipelines for rasters',
author='Florent Guiotte',
author_email='florent.guiotte@uhb.fr',
url='https://git.guiotte.fr/Florent/LD2DAPs',
packages=['ld2dap'],
)