forked from marthoc/libhomeseer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 849 Bytes
/
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
import setuptools
long_description = open('README.md').read()
setuptools.setup(
name="libhomeseer",
version="1.3.0",
author="Mark Coombes- modified by Mike Scott",
author_email="[email protected]",
description="Python3 async library for interacting with HomeSeer HS3 and HS4 via JSON and ASCII",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wpiman/libhomeseer",
packages=['libhomeseer'],
install_requires=['aiohttp'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)