Add tool scripts #1

Merged
florent merged 7 commits from develop into master 2024-11-10 15:43:36 +01:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit b1a2d50a14 - Show all commits

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',]},
)