1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/env python3
from setuptools import setup
setup(
name='aiolifx_effects',
packages=['aiolifx_effects'],
version='0.3.2',
install_requires=['aiolifx>=0.8.6'],
description='aiolifx light effects',
author='Anders Melchiorsen',
author_email='amelchio@nogoto.net',
url='https://github.com/amelchio/aiolifx_effects',
license='MIT',
keywords=['aiolifx,lifx'],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
],
)
|