Skip to content

Commit fba3092

Browse files
committed
added to pypi
1 parent 8f8b665 commit fba3092

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

microhttp.py microhttpd.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# -*- coding: utf-8 -*-
2+
__author__ = 'Rob Tandy'
3+
__license__ = 'MIT'
4+
__version__ = '0.5.0'
5+
16
import urllib.parse
27
import re
38
import os

setup.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
import microhttpd
5+
6+
V = microhttpd.__version__
7+
8+
setup(name='microhttpd',
9+
version=V,
10+
author='Rob Tandy',
11+
author_email='[email protected]',
12+
url='https://github.com/robtandy/microhttpd',
13+
long_description="""
14+
A simple, small and fast web server based around asyncio.
15+
""",
16+
py_modules=['microhttpd'],
17+
)

0 commit comments

Comments
 (0)