File: setup.py

package info (click to toggle)
python-asyncsleepiq 1.5.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: python: 1,047; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 703 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
24
25
26
27
28
import os
from setuptools import setup


def readme():
    with open("README.md") as f:
        return f.read()


setup(
    name="asyncsleepiq",
    packages=["asyncsleepiq", "asyncsleepiq.fuzion"],
    package_data={"asyncsleepiq": ["py.typed"]},
    version=os.environ.get('OSLO_PACKAGE_VERSION'),
    description="ASync SleepIQ API",
    long_description=readme(),
    long_description_content_type="text/markdown",
    url="http://github.com/kbickar/asyncsleepiq",
    author="Keilin Bickar",
    author_email="trumpetgod@gmail.com",
    license="MIT",
    install_requires=[
        'aiohttp;python_version>="3.7"',
    ],
    classifiers=[
        "Programming Language :: Python :: 3",
    ],
)