-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 973 Bytes
/
setup.py
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
from os import path
from setuptools import setup, find_packages
with open(path.join(".", 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name="automate-lifx-plugin",
version="0.9.1",
url="https://github.com/majamassarini/automate-home",
description="A Lifx plugin for automate-home",
long_description=long_description,
long_description_content_type='text/markdown',
author="Maja Massarini",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Communications",
"Intended Audience :: Developers",
],
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=['automate-home', 'lifx-lib']
)