forked from brendan-w/python-OBD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.13 KB
/
setup.py
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
29
30
31
32
33
34
#!/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name="obd",
version="0.7.0",
description=("Serial module for handling live sensor data from a vehicle's OBD-II port"),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Topic :: System :: Monitoring",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Topic :: System :: Logging",
"Intended Audience :: Developers",
],
keywords="obd obdii obd-ii obd2 car serial vehicle diagnostic",
author="Brendan Whitfield",
author_email="[email protected]",
url="http://github.com/brendan-w/python-OBD",
license="GNU GPLv2",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=["pyserial==3.*", "pint==0.7.*"],
)