1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
from setuptools import find_packages, setup
with open("README.md") as f:
LONG_DESCRIPTION = f.read()
setup(
name="homeconnect",
version="0.8.0",
author="David M. Straub",
author_email="straub@protonmail.com",
url="https://github.com/DavidMStraub/homeconnect",
description="Python client for the BSH Home Connect REST API",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
install_requires=["requests", "requests_oauthlib"],
extras_require={
"testing": [
"nose",
],
},
)
|