forked from Julius2342/pyvlx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (37 loc) · 1.33 KB
/
setup.py
File metadata and controls
45 lines (37 loc) · 1.33 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""Module for setting up PyVLX pypi object."""
import io
import os
from setuptools import find_packages, setup
REQUIRES = [
'PyYAML'
]
PKG_ROOT = os.path.dirname(__file__)
VERSION = '0.2.10'
# Error-handling here is to allow package to be built w/o README included
try:
README = io.open(os.path.join(PKG_ROOT, 'README.md'), encoding='utf-8').read()
except IOError:
README = ''
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.\n\nPyVLX enables you to run scenes and or open and close velux windows.",
long_description=README,
author='Julius Mittenzwei',
author_email='julius@mittenzwei.com',
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)