Files
dragonpilot/rednose_repo/setup.py
Vehicle Researcher 6928314c89 openpilot v0.10.3 release
date: 2025-12-18T23:23:16
master commit: 154c2334110373950bac1c36fc6e943cb1208326
2025-12-18 23:23:21 -08:00

30 lines
627 B
Python

import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='rednose',
version='0.0.1',
url='https://github.com/commaai/rednose',
author='comma.ai',
author_email='harald@comma.ai',
packages=find_packages(),
platforms='any',
license='MIT',
package_data={'': ['helpers/chi2_lookup_table.npy', 'templates/*']},
install_requires=[
'numpy',
'cffi',
'sympy',
],
extras_require={
'dev': [
'scipy',
],
},
ext_modules=[],
description="Kalman filter library",
long_description='See https://github.com/commaai/rednose',
)