-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (35 loc) · 1.37 KB
/
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
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="aionanoleaf",
version="0.2.1",
author="Milan Meulemans",
author_email="[email protected]",
description="Async Python package for the Nanoleaf API",
keywords="nanoleaf api canvas shapes elements light panels",
license="LGPLv3+",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/milanmeu/aionanoleaf",
project_urls={
"Say Thanks!": "https://saythanks.io/to/[email protected]",
"Bug Tracker": "https://github.com/milanmeu/aionanoleaf/issues",
"Source Code": "https://github.com/milanmeu/aionanoleaf",
"Documentation": "https://github.com/milanmeu/aionanoleaf/blob/main/README.md",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Home Automation",
"Typing :: Typed",
],
python_requires=">=3.8",
packages=["aionanoleaf"],
package_data={"aionanoleaf": ["py.typed"]},
install_requires=["aiohttp"],
)