forked from Pbartek/pyobd-pi
-
Notifications
You must be signed in to change notification settings - Fork 373
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Brendan Whitfield
committed
Nov 4, 2014
1 parent
c03ce4c
commit 4059fc9
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/env python | ||
# -*- coding: utf8 -*- | ||
|
||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="obd", | ||
version="0.1.0", | ||
description=("Serial module for handling live sensor data from a vehicle's OBD-II port"), | ||
classifiers=[ | ||
"Operating System :: POSIX :: Linux", | ||
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)", | ||
"Topic :: System :: Monitoring", | ||
"Programming Language :: Python :: 2", | ||
"Development Status :: 3 - Alpha", | ||
"Topic :: System :: Logging", | ||
"Intended Audience :: Developers", | ||
], | ||
keywords="obd obd-II obd-ii obd2 car serial vehicle diagnostic", | ||
author="Brendan Whitfield", | ||
author_email="[email protected]", | ||
url="http://github.com/brendanwhitfield/python-OBD", | ||
license="GNU GPLv2", | ||
packages=find_packages(), | ||
include_package_data=True, | ||
zip_safe=False, | ||
install_requires=["pyserial"], | ||
) |