forked from commaai/laika
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 825 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
30
31
32
33
34
#!/home/batman/one/laika/env
#-*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='laika',
version='0.0.1',
url='https://github.com/commaai/laika',
author='comma.ai',
author_email='[email protected]',
packages=find_packages(),
platforms='any',
license='MIT',
setup_requires=['numpy', 'pytest-runner'],
install_requires=[
'requests',
'scipy==1.0.0',
'tqdm'
],
ext_modules=[],
description="GNSS library for use with the comma.ai ecosystem",
long_description='See https://github.com/commaai/laika',
classifiers=[
'Development Status :: 2 - Beta',
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Topic :: System :: Hardware",
],
tests_require=['pytest'],
)