-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1.03 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
from distutils.core import setup
from amnesia import __version__ as amnesia_version
from amnesia import __doc__ as long_description
version = ".".join(map(str, amnesia_version))
setup(name='amnesia',
version=version,
description="Amnesia eases web development by reloading WSGI apps "\
"and imported modules before each request.",
author="Rafael Carlos Valverde",
author_email="[email protected]",
url="http://rafaelcv.github.com/amnesia",
scripts=["amnesia"],
py_modules=['amnesia'],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
],
long_description=long_description,
)