Skip to content

Commit

Permalink
Merge pull request #5 from pimoroni/pypi
Browse files Browse the repository at this point in the history
Packaging for pypi.
  • Loading branch information
lowfatcode authored Aug 12, 2022
2 parents b555cf5 + e81fd74 commit 949a9ab
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE.txt
include README.md
include setup.py
recursive-include phew *.py
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
license="MIT",
license_files="LICENSE",
packages=["phew"]
)

0 comments on commit 949a9ab

Please sign in to comment.