forked from Kane610/deconz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 889 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 889 Bytes
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
"""Setup for deCONZ"""
# https://jeffknupp.com/blog/2013/08/16/open-sourcing-a-python-project-the-right-way/
# http://peterdowns.com/posts/first-time-with-pypi.html
# pip install -e .
# Upload to PyPI Live
# python setup.py sdist bdist_wheel
# twine upload dist/pydeconz-* --skip-existing
from setuptools import setup
setup(
name="pydeconz",
packages=["pydeconz"],
version="65",
description="A Python library for communicating with deCONZ REST-API from Dresden Elektronik",
author="Robert Svensson",
author_email="Kane610@users.noreply.github.com",
license="MIT",
url="https://github.com/Kane610/deconz",
download_url="https://github.com/Kane610/deconz/archive/v65.tar.gz",
install_requires=["aiohttp"],
keywords=["deconz", "zigbee", "homeassistant"],
classifiers=["Natural Language :: English", "Programming Language :: Python :: 3"],
)