-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from pimoroni/pypi
Packaging for pypi.
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
) |