-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 1.02 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
from setuptools import setup, find_packages
long_description = open('README.md').read()
setup(
name='pyteslable',
version='0.1.4',
description='Python interface for connecting to Tesla vehicles directly using the BLE API',
readme='README.md',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kaedenbrinkman/PyTeslaBLE',
author='Kaeden Brinkman',
author_email='kaeden@kaedenb.org',
license='BSD 2-clause',
packages=find_packages(exclude=['test']),
install_requires=['simplepyble', 'cryptography', 'protobuf'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)