-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (32 loc) · 867 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
28
29
30
31
32
33
34
35
# coding: utf-8
import setuptools
from setuptools import setup
with open('README.md', 'r') as fp:
readme = fp.read()
VERSION = "1.5.0"
LICENSE = "MIT"
setup(
name='visual_pts',
version=VERSION,
description=(
'Visualize Point Clouds (with bbox) by Plotly'
),
long_description=readme,
author='JunbinGao, HaoRuan, LianguangLiu',
author_email='[email protected]',
maintainer='JunbinGao, HaoRuan, LianguangLiu',
maintainer_email='[email protected]',
license=LICENSE,
packages=setuptools.find_packages(),
platforms=["all"],
url='https://github.com/gaojunbin/visual_pts',
install_requires=[
"plotly",
"opencv-python",
"matplotlib",
],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)