-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
53 lines (49 loc) · 1.55 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
48
49
50
51
52
53
"""
ShadeTree OBD
-------------
A Python library to help the Shade Tree Mechanic easily interface with OBD-II scanners
ShadeTree OBD is distributed under the MIT License.
"""
from setuptools import setup
setup(
name="shadetree",
version="0.1",
license="MIT",
author="HUB-OLOGY",
author_email="[email protected]",
url="http://hub-ology.org",
download_url = 'https://github.com/corbinbs/shadetree/tarball/0.1',
description="ShadeTree OBD",
long_description=__doc__,
packages=["shadetree", "shadetree.obd"],
scripts=["bin/shadetree"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=[
"pyserial>=2.7"
],
tests_require=[
"nose",
"tox"
],
test_suite = 'nose.collector',
keywords = ['obd', 'obdii', 'automotive'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"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"
]
)