forked from zsquareplusc/mpy-repl-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.25 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
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3
#
# (C) 2016-2023 Chris Liechti <cliechti@gmx.net>
#
# SPDX-License-Identifier: BSD-3-Clause
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="mpy-repl-tool",
description='Communicate and transfer files from and to MicroPython boards via REPL',
long_description=open('README.rst').read(),
version='0.14',
author="Chris Liechti",
author_email="cliechti@gmx.net",
url="https://github.com/zsquareplusc/mpy-repl-tool",
packages=['there'],
license="BSD",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Embedded Systems',
],
platforms='any',
install_requires=[
'pyserial>=3',
'colorama',
],
extras_require={
'mount': ['fusepy'],
},
entry_points={
'console_scripts': [
'there = there.__main__:main',
],
},
)