-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
23 lines (22 loc) · 844 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
from setuptools import setup
setup(
name="mpy-utils",
version="0.1.13",
description="MicroPython development utility programs",
long_description="MicroPython development utility programs",
url="https://github.com/nickzoic/mpy-utils/",
author="Nick Moore",
author_email="[email protected]",
license="MIT",
packages=["mpy_utils"],
scripts=["bin/mpy-fuse", "bin/mpy-upload", "bin/mpy-download", "bin/mpy-sync", "bin/mpy-watch", "bin/mpy-reset"],
install_requires=["fusepy>=3", "pyserial>=3"],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Embedded Systems",
],
)