summary refs log blame commit diff
path: root/pkgs/development/python-modules/waitress-django/setup.py
blob: 07f7b326fdafb15a3fb96a5c3cf3b5ecb2ea6d4b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                             
#!/usr/bin/env python

from distutils.core import setup

setup( name         = "waitress-django"
     , version      = "0.0.0"
     , description  = "A waitress WSGI server serving django"
     , author       = "Bas van Dijk"
     , author_email = "v.dijk.bas@gmail.com"
     , package_dir  = {"" : "src"}
     , scripts      = ["src/waitress-serve-django"]
     )