You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
593 B
26 lines
593 B
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=[
|
|
'sympy',
|
|
'numpy',
|
|
'scipy',
|
|
'tqdm',
|
|
'cffi',
|
|
],
|
|
ext_modules=[],
|
|
description="Kalman filter library",
|
|
long_description='See https://github.com/commaai/rednose',
|
|
)
|
|
|