-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (50 loc) · 1.7 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import setuptools
from glob import glob
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pcdviz",
version="0.0.3",
author="daohu527",
author_email="daohu527@gmail.com",
description="point cloud viz",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/daohu527/pcdviz",
project_urls={
"Bug Tracker": "https://github.com/daohu527/pcdviz/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
data_files=[('pcdviz/config', glob('config/*yaml')),
('pcdviz/data/custom/label',
glob('data/custom/label/*txt')),
('pcdviz/data/custom/prediction',
glob('data/custom/prediction/*txt')),
('pcdviz/data/custom/velodyne',
glob('data/custom/velodyne/*bin')),
('pcdviz/data/kitti/training/calib',
glob('data/kitti/training/calib/*txt')),
('pcdviz/data/kitti/training/label_2',
glob('data/kitti/training/label_2/*txt')),
('pcdviz/data/kitti/training/velodyne',
glob('data/kitti/training/velodyne/*bin')),],
packages=setuptools.find_packages(where="."),
install_requires=[
'open3d',
# 'seaborn',
'numpy',
'pyyaml',
'scikit-image',
],
entry_points={
'console_scripts': [
'pcdviz = pcdviz.main:main',
],
},
python_requires=">=3.6",
)