forked from corbinbs/shadetree
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (44 loc) · 1.31 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
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
OBD Library
-------------
A Python interface to OBD-II scanners
"""
from setuptools import setup
setup(
name="obdlib",
version="0.2.1",
license="MIT",
author="Siarhei Boika",
author_email="s.s.boika@gmail.com",
description="OBD Library",
long_description=__doc__,
packages=["obdlib", "obdlib.obd", "obdlib.obd.protocols"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"pyserial>=2.7"
],
tests_require=[
"nose",
],
test_suite='nose.collector',
keywords=['obd', 'obdii', 'automotive'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Communications",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: Utilities"
]
)