We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f8b665 commit fba3092Copy full SHA for fba3092
microhttp.py microhttpd.py
@@ -1,3 +1,8 @@
1
+# -*- coding: utf-8 -*-
2
+__author__ = 'Rob Tandy'
3
+__license__ = 'MIT'
4
+__version__ = '0.5.0'
5
+
6
import urllib.parse
7
import re
8
import os
setup.py
@@ -0,0 +1,17 @@
+#!/usr/bin/env python
+from distutils.core import setup
+import microhttpd
+V = microhttpd.__version__
+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