1
+ """
2
+ ShadeTree OBD
3
+ -------------
4
+
5
+ A Python library to help the Shade Tree Mechanic easily interface with OBD-II scanners
6
+
7
+ ShadeTree OBD is distributed under the MIT License.
8
+ """
9
+ from setuptools import setup
10
+
11
+
12
+ setup (
13
+ name = "shadetree" ,
14
+ version = "0.1" ,
15
+ license = "MIT" ,
16
+ author = "HUB-OLOGY" ,
17
+
18
+ url = "http://hub-ology.org" ,
19
+ download_url = 'https://github.com/corbinbs/shadetree/tarball/0.1' ,
20
+ description = "ShadeTree OBD" ,
21
+ long_description = __doc__ ,
22
+ packages = ["shadetree" , "shadetree.obd" ],
23
+ scripts = ["bin/shadetree" ],
24
+ zip_safe = False ,
25
+ include_package_data = True ,
26
+ platforms = "any" ,
27
+ install_requires = [
28
+ "pyserial>=2.7"
29
+ ],
30
+ tests_require = [
31
+ "nose"
32
+ ],
33
+ test_suite = 'nose.collector' ,
34
+ keywords = ['obd' , 'obdii' , 'automotive' ],
35
+ classifiers = [
36
+ "Development Status :: 3 - Alpha" ,
37
+ "Environment :: Web Environment" ,
38
+ "Intended Audience :: Developers" ,
39
+ "Intended Audience :: Education" ,
40
+ "License :: OSI Approved :: MIT License" ,
41
+ "Operating System :: OS Independent" ,
42
+ "Programming Language :: Python" ,
43
+ "Programming Language :: Python :: 2.7" ,
44
+ "Programming Language :: Python :: 3.4" ,
45
+ "Programming Language :: Python :: Implementation :: PyPy" ,
46
+ "Topic :: Communications" ,
47
+ "Topic :: Scientific/Engineering :: Information Analysis" ,
48
+ "Topic :: Software Development :: Libraries :: Python Modules" ,
49
+ "Topic :: System :: Logging" ,
50
+ "Topic :: Utilities"
51
+ ]
52
+ )
0 commit comments