forked from mfxox/ILCC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 920 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
import sys, os
with open('requirements.txt') as f:
required = f.read().splitlines()
version = '0.2'
setup(name='ILCC',
version=version,
description="Intensity-based_Lidar_Camera_Calibration",
long_description="""\
An package for automatic 3D_LiDAR-Panoramic_camera extrinsic calibration based on corner detection from the sparse point cloud with reflectance intensity. """,
classifiers=[], #
keywords='lidar panoramic camera calibration extrinsic visualization',
author='wangwm',
author_email='[email protected]',
url='https://github.com/mfxox/ILCC',
license='BSD-2',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=required,
entry_points="""
# -*- Entry points: -*-
""",
)