File: setup.py

package info (click to toggle)
python-homeconnect 0.8.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 120 kB
  • sloc: python: 556; sh: 6; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 630 bytes parent folder | download
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",
        ],
    },
)