forked from briancline/torque-satellite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 879 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
from setuptools import setup
setup(
name='torque-satellite',
version='0.1.0',
author='Brian Cline',
author_email='[email protected]',
description='A web-based frontend with requisite back-end components '
'to process real time GPS/OBDII updates from the Torque Pro '
'and Torque Lite apps on Android.',
long_description=open('README.md').read(),
license='MIT',
keywords='torque api push car gps obdii obd',
url='https://github.com/briancline/torque-satellite',
packages=['torque-satellite'],
install_requires=['msgpack', 'mosquitto'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Other Audience',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
],
)