-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (28 loc) · 1.05 KB
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
29
30
31
from setuptools import setup
install_requires = list(val.strip() for val in open("requirements.txt"))
tests_require = list(val.strip() for val in open("test_requirements.txt"))
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="AIOSomecomfort",
version="0.0.38",
description="A client for Honeywell's US-based cloud devices",
license="MIT",
long_description=long_description,
long_description_content_type="text/plain",
author="Mike Kasper",
author_email="m_kasper@sbcglobal.net",
url="https://github.com/mkmer/AIOSomecomfort",
download_url="https://github.com/mkmer/AIOSomecomfort/archive/refs/tags/0.0.38.tar.gz",
packages=["aiosomecomfort"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=install_requires,
tests_require=tests_require,
include_package_data=True,
)