-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 761 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 761 Bytes
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
from setuptools import setup, find_packages
setup(
name="lidar_visualizer",
version="0.3",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"open3d",
"numpy",
"matplotlib",
"plyfile",
"pygame",
"carla",
"tk",
],
entry_points={
"console_scripts": [
"lidar-viz=main:main",
],
},
include_package_data=True,
description="Proyecto de visualización de datos LiDAR con soporte para archivos y simulador CARLA",
author="Félix Martínez",
author_email="felixmaral131@gmail.com",
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.8",
)