-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.12 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="polar-python",
version="0.0.4",
packages=find_packages(),
install_requires=["bleak"],
author="Zhe_Learn",
author_email="[email protected]",
description=(
"polar-python is a Python library for connecting to Polar devices via Bluetooth Low Energy (BLE) "
"using Bleak. It allows querying device capabilities (e.g., ECG, ACC, PPG), exploring configurable options, "
"and streaming parsed data through callback functions."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zHElEARN/polar-python",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
)