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",
],
)
|