-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
25 lines (23 loc) · 818 Bytes
/
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
# encoding: utf-8
from setuptools import setup
from wsgid import __progname__, __version__
import os
import sys
setup(
name=__progname__,
version=__version__,
url="https://github.com/daltonmatos/wsgid",
license="GPLv2",
description="A complete WSGI environment for mongrel2 handlers",
author="Dalton Barreto",
author_email="[email protected]",
long_description=file('README.rst').read(),
packages=['wsgid', 'wsgid/options', 'wsgid/core', 'wsgid.loaders'],
scripts=['scripts/wsgid'],
install_requires = ['plugnplay', 'pyzmq', 'python-daemon'],
classifiers = [
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Application Frameworks"
])