-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
32 lines (30 loc) · 1.1 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
from setuptools import setup
import io
with io.open('README.rst', encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="NooLite_F",
packages=["NooLite_F", "NooLite_F.MTRF64"],
version="0.1.3",
license="MIT License",
description="Module to work with NooLite/NooLite-F modules via MTRF-64/MTRF-64-USB adapter",
long_description=long_description,
author="Sergey Prytkov",
author_email="[email protected]",
url="https://github.com/SergejPr/NooLite-F",
keywords="noolite noolite-f noolitef",
install_requires=["pyserial"],
platforms="any",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Home Automation",
"Topic :: System :: Hardware",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
)