add packaging details for jupyter_micropython_kernel module

This commit is contained in:
matthewcroughan
2020-08-29 07:22:59 +01:00
parent ccd6e7803e
commit 57546c364d
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
"""Jupyter kernel to interact with a MicroPython ESP8266 or ESP32 over its serial REPL."""
__version__ = '0.1.3.2'

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "jupyter_micropython_kernel"
description-file = "README.md"
author = "Julian Todd, Tony DiCola"
author-email = "julian@goatchurch.org.uk"
home-page = "https://github.com/goatchurchprime/jupyter_micropython_kernel"
requires-python=">=3.0"
requires=[
"pyserial>=3.4",
"websocket-client>=0.44"
]
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]