-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (39 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""
MicroPie is Fun
```````````````
::
from MicroPie import
class MyApp(Server):
def index(self):
return 'Hello world!'
app = MyApp() # Run with `uvicorn app:app`
Links
`````
* `Website <https://patx.github.io/micropie>`_
* `Github Repo <https://github.com/patx/micropie>`_
"""
from distutils.core import setup
setup(name="MicroPie",
version="0.9.1",
description="A ultra micro web framework w/ Jinja2.",
long_description=__doc__,
author="Harrison Erd",
author_email="harrisonerd@gmail.com",
license="three-clause BSD",
url="http://github.com/patx/micropie",
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Framework :: AsyncIO",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed"],
py_modules=['MicroPie'],
install_requires=['jinja2'],
)