forked from CANToolz/CANToolz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 875 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
from setuptools import setup
import pip
import sys
if len(sys.argv) >= 2 and sys.argv[1] == 'install':
#pip.main(['install', 'neurolab'])
pip.main(['install', 'pyserial'])
pip.main(['install', 'numpy'])
pip.main(['install', 'mido'])
#pip.main(['install', 'scipy'])
#pip.main(['install', 'pybrain'])
pip.main(['install', 'bitstring'])
setup(
name='CANToolz',
version='3.6.0',
author='Alexey Sintsov',
install_requires=[
'pyserial',
'mido',
'numpy','bitstring'
],
author_email='[email protected]',
packages=['cantoolz', 'cantoolz.stream', 'cantoolz.utils', 'cantoolz.modules'],
scripts=[],
url='https://github.com/eik00d/CANToolz',
license='Apache 2.0',
description='Framework and library for black-box analysis and reverse engineering of Controller Area Network (CAN)'
)