forked from linklayer/pyvit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (17 loc) · 679 Bytes
/
setup.py
File metadata and controls
20 lines (17 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name='CANard',
version='0.2.0',
author='Eric Evenchick',
author_email='eric@evenchick.com',
packages=['canard', 'canard.test', 'canard.hw', 'canard.utils', 'canard.proto'],
scripts=[],
url='http://github.com/ericevenchick/CANard',
license='GPLv3',
description='Library for interacting with Controller Area Network (CAN)',
long_description=open('README.rst').read(),
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Embedded Systems']
)