-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
setup.py
26 lines (22 loc) · 816 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
from setuptools import setup, find_packages
package_name = 'bev-toolbox'
version = 0.0
if __name__ == "__main__":
print(f"Building wheel {package_name}-{version}")
setup(
# Metadata
name=package_name,
version=version,
author="OpenPerceptionX",
author_email="[email protected]",
url="https://github.com/OpenPerceptionX/BEVPerception-Survey-Recipe",
description="Toolbox for BEV Perception",
license="Apache 2.0",
# Package info
packages=find_packages(exclude=('docs', 'example', 'waymo_playground', 'figs')),
# packages=find_packages('bev_toolbox'),
# package_dir={'': 'bev_toolbox'},
zip_safe=False,
install_requires=['opencv-python', 'numpy'],
python_requires=">=3.5",
)