From e81fd74be6e1dc0addfb18b548c514f65a96cb28 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 10 Aug 2022 16:30:33 +0100 Subject: [PATCH] Packaging for pypi. --- MANIFEST.in | 4 ++++ setup.py | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 MANIFEST.in create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..820c711 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,4 @@ +include LICENSE.txt +include README.md +include setup.py +recursive-include phew *.py \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..fdfdb98 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup + +setup( + name="micropython-phew", + version="0.0.1-post1", + description="A small webserver and templating library specifically designed for MicroPython on the Pico W.", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + project_urls={ + "GitHub": "https://github.com/pimoroni/phew" + }, + author="Jonathan Williamson", + maintainer="Phil Howard", + maintainer_email="phil@pimoroni.com", + license="MIT", + license_files="LICENSE", + packages=["phew"] +)