forked from utiasASRL/pyboreas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 843 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
import setuptools
from pathlib import Path
this_directory = Path(__file__).parent
with open(str(this_directory / "README.md"), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='asrl-pyboreas',
version='1.0.4',
description='A toolkit for working with the Boreas dataset in Python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Keenan Burnett, Andrew Li, Shichen Lu, Jingxing Qian, Yuchen Wu, David Yoon',
author_email='[email protected]',
url='https://github.com/utiasASRL/boreas-devkit',
license='BSD',
packages=setuptools.find_packages(),
python_requires='>=3.8',
install_requires=["numpy>=1.21.0",
"opencv-python>=4.5.3.56",
"matplotlib>=3.4.2",
"pyproj>=3.1.0",
"asrl-pysteam>=1.0.4",
"dash>=2.0.0"]
)