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
26 lines (22 loc) · 749 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 749 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
from setuptools import setup, find_packages
setup(
name='pyvit',
version='0.2.0',
packages=find_packages(),
scripts=[],
install_requires=[
'pyserial>=3.2.1'
],
test_suite='test',
author='Eric Evenchick',
author_email='eric@evenchick.com',
url='http://github.com/linklayer/pyvit',
license='GPLv3',
description='Python Vehicle Inteface Toolkit',
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']
)