Refactor misc to tool, scripts to setup

This commit is contained in:
Florent Guiotte 2019-05-24 15:18:23 +02:00
parent a21662bf68
commit b1a2d50a14
2 changed files with 3 additions and 2 deletions

View File

@ -11,10 +11,11 @@
from distutils.core import setup
setup(name='idefix',
version='0.0',
version='1.3',
description='Utils and processing pipelines for LiDAR point clouds',
author='Florent Guiotte',
author_email='florent.guiotte@uhb.fr',
url='https://git.guiotte.fr/Florent/Idefix',
packages=['idefix'],
packages=['idefix', 'idefix.tools'],
entry_points = {'console_scripts':['txt2npz = idefix.tools.txt_to_npz:main',]},
)