forked from Julius2342/pyvlx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (38 loc) · 1.49 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
36
37
38
39
40
41
42
43
44
45
46
"""Module for setting up PyVLX pypi object."""
import os
from os import path
from setuptools import find_packages, setup
REQUIRES = ["PyYAML"]
PKG_ROOT = os.path.dirname(__file__)
VERSION = "0.2.20"
def get_long_description():
"""Read long description from README.md."""
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as readme:
long_description = readme.read()
return long_description
setup(
name="pyvlx",
version=VERSION,
download_url="https://github.com/Julius2342/pyvlx/archive/" + VERSION + ".zip",
url="https://github.com/Julius2342/pyvlx",
description="PyVLX is a wrapper for the Velux KLF 200 API. PyVLX enables you to run scenes and or open and close velux windows.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Julius Mittenzwei",
author_email="[email protected]",
license="LGPL",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Topic :: System :: Hardware :: Hardware Drivers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
packages=find_packages(),
install_requires=REQUIRES,
keywords="velux KLF 200 home automation",
zip_safe=False,
)