Skip to content

Commit

Permalink
made setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Whitfield committed Nov 4, 2014
1 parent c03ce4c commit 4059fc9
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Dependencies
Usage
-----

After installing the library, simply import pyobd, and create a new OBD connection object. By default, python-OBD will scan for Bluetooth and USB serial ports (in that order), and will pick the first connection it finds. The port can also be specified manually by passing a connection string to the OBD constructor. You can also use the scanSerial helper retrieve a list of connected ports::
After installing the library, simply import 'obd', and create a new OBD connection object. By default, python-OBD will scan for Bluetooth and USB serial ports (in that order), and will pick the first connection it finds. The port can also be specified manually by passing a connection string to the OBD constructor. You can also use the scanSerial helper retrieve a list of connected ports::

import obd

Expand Down
28 changes: 28 additions & 0 deletions setup.py
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"],
)

0 comments on commit 4059fc9

Please sign in to comment.