forked from automicus/PyISY
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·35 lines (31 loc) · 1.12 KB
/
setup.py
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
32
33
34
35
"""Module Setup File for PIP Installation."""
import pathlib
from setuptools import find_packages, setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="pyisy",
version_format="{tag}",
license="Apache License 2.0",
url="https://github.com/automicus/PyISY",
author="Ryan Kraus",
author_email="automicus@gmail.com",
description="Python module to talk to ISY994 from UDI.",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms="any",
setup_requires=["setuptools-git-version"],
install_requires=["requests", "python-dateutil", "aiohttp"],
keywords=["home automation", "isy", "isy994", "isy-994", "UDI"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)