-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 842 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 842 Bytes
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
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*\'(.*)\'',
open('reversegear/reversegear.py').read(),
re.M
).group(1)
setup(
name='reversegear',
entry_points={
'console_scripts': ['reversegear = reversegear.reversegear:main']
},
packages=['reversegear'],
py_modules=['reversegear'],
version=version,
description='Offline reverse engineering tools for automotive networks.',
long_description='See: https://github.com/linklayer/reversegear/blob/master/README.rst',
author='Eric Evenchick',
author_email='eric@evenchick.com',
install_requires=[
'pyvit',
],
keywords=['networks', 'automotive', 'reverse engineering'],
download_url=('https://github.com/linklayer/reversegear/archive/%s.tar.gz'
% version)
)