-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (25 loc) · 826 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
# Copyright 2023 Pavlo Bashmakov
"""setup.py file for ptudes-lab"""
from setuptools import find_namespace_packages
from setuptools import setup
__version__ = '0.0.7'
setup(
name='ptudes-lab',
version=__version__,
description='Ptudes lab: odometry, SLAM and visualization experiments',
author='Pavlo Bashmakov',
author_email='[email protected]',
python_requires='>=3.8, <3.12',
packages=find_namespace_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'numpy >= 1.20',
'ouster-sdk >= 0.13.0',
'rosbags >= 0.9.16',
'matplotlib >= 3.5.3',
'kiss-icp >= 1.0.0, <3'
],
entry_points={'console_scripts': ['ptudes=ptudes.cli.run:main']},
url='https://github.com/bexcite/ptudes-lab',
license='MIT',
)