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
|
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import setuptools
version = "1.0.6"
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aiolifx",
packages=["aiolifx"],
version=version,
author="François Wautier",
author_email="francois@wautier.eu",
description="API for local communication with LIFX devices over a LAN with asyncio.",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/aiolifx/aiolifx",
keywords=["lifx", "light", "automation"],
license="MIT",
install_requires=[
"async_timeout>=3.0.1",
"bitstring",
"ifaddr",
"click>=8.1.0,<8.2.0",
"InquirerPy>=0.3.0,<0.4.0",
],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3",
],
entry_points={"console_scripts": ["aiolifx = aiolifx.__main__:cli"]},
python_requires=">=3.4",
zip_safe=False,
)
|