forked from brendan-w/pihud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 923 Bytes
/
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
#!/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="pihud",
version="0.1.0",
description=("Configurable heads up display for the Raspberry Pi using a car's OBD port"),
classifiers=[
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Topic :: System :: Monitoring",
"Programming Language :: Python :: 2 :: Only",
"Development Status :: 3 - Alpha",
"Topic :: System :: Logging",
"Intended Audience :: Developers",
],
keywords="obd car heads-up display Hud vehicle diagnostic",
author="Brendan Whitfield",
author_email="me@brendan-w.com",
url="http://github.com/brendan-w/piHud",
license="GNU LGPLv2.1",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=["obd"],
)