forked from kaedenbrinkman/PyTeslaBLE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 1.03 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
from setuptools import setup, find_packages
long_description = open("README.md").read()
setup(
name="tesla_bluetooth",
version="0.2.0",
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/Teslemetry/python-tesla-bluetooth",
author="Brett Adams, Kaeden Brinkman, Lex Nastin, Kevin Dewald",
author_email="admin@teslemetry.com",
license="BSD 2-clause",
packages=find_packages(exclude=["test", "example"]),
install_requires=["simplepyble", "cryptography", "protobuf"],
classifiers=[
"Development Status :: 3 - Alpha",
"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.12",
],
)