1[metadata]
2name = mpremote
3version = 0.0.6
4author = Damien George
5author_email = damien@micropython.org
6description = Tool for interacting remotely with MicroPython
7long_description = file: README.md
8long_description_content_type = text/markdown
9url = https://github.com/micropython/micropython
10project_urls =
11    Bug Tracker = https://github.com/micropython/micropython/issues
12classifiers =
13    Programming Language :: Python :: 3
14    License :: OSI Approved :: MIT License
15    Operating System :: OS Independent
16
17[options]
18packages = mpremote
19python_requires = >= 3.4
20install_requires =
21    pyserial >= 3.3
22
23[options.entry_points]
24console_scripts =
25  mpremote = mpremote.main:main
26