mirror of
https://github.com/bytedream/aionlib.git
synced 2025-06-27 07:50:31 +02:00
Add files via upload
This commit is contained in:
21
setup.py
Normal file
21
setup.py
Normal file
@ -0,0 +1,21 @@
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
|
||||
setup(name="aionlib",
|
||||
version="0.1.0",
|
||||
author="blueShard",
|
||||
description="Library support for the 'aion' project",
|
||||
license="MPL-2.0",
|
||||
classifiers=[
|
||||
"Development Status :: 4 - Beta",
|
||||
"Environment :: Console",
|
||||
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
||||
"Operating System :: Unix",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Topic :: Home Automation"],
|
||||
python_requires=">=3.6.*",
|
||||
install_requires=["colorama"],
|
||||
packages=find_packages())
|
Reference in New Issue
Block a user