File: setup.py

package info (click to toggle)
python-aiolifx-effects 0.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 96 kB
  • sloc: python: 335; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 579 bytes parent folder | download
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",
    ],
)