-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 870 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 870 Bytes
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="pyowletapi",
version="2025.4.10",
description="Owlet baby monitor API wrapper",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ryanbdclark/pyowletapi",
author="Ryan Clark",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
keywords="owlet, api, baby",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
package_data={"pyowletapi": ["py.typed"]},
python_requires=">=3.10",
install_requires=["aiohttp"],
)