Skip to content

Commit

Permalink
removed bug in setup.py due to previous changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nubertj committed Jun 17, 2021
1 parent bb7205d commit 3d03622
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ def run(self):
print("--------------------------------")
install.run(self)


setup(name='DeLORA',
version='1.0',
author='Julian Nubert (nubertj@ethz.ch)',
package_dir={"":"src"},
package_dir={"": "src"},
install_requires=[
'numpy',
'torch',
Expand All @@ -25,8 +26,8 @@ def run(self):
'rospkg'
],
scripts=['bin/preprocess_data.py', 'bin/run_rosnode.py', 'bin/run_testing.py', 'bin/run_training.py',
'bin/visualize_pointcloud_normals.py', 'bin/clone_and_preprocess_darpa_dataset.sh'],
'bin/visualize_pointcloud_normals.py'],
license='LICENSE',
description='Self-supervised Learning of LiDAR Odometry for Robotic Applications',
cmdclass={'install': CustomInstallCommand,},
cmdclass={'install': CustomInstallCommand, },
)

0 comments on commit 3d03622

Please sign in to comment.