mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
57 lines
1.8 KiB
Python
57 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -
|
|
#
|
|
# Copyright (c) 2009 Benoit Chesneau <benoitc@e-engura.com>
|
|
#
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
|
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = 'gunicorn',
|
|
version = '0.1',
|
|
|
|
description = 'WSGI HTTP Server for UNIX',
|
|
long_description = file(
|
|
os.path.join(
|
|
os.path.dirname(__file__),
|
|
'README.txt'
|
|
)
|
|
).read(),
|
|
author = 'Benoit Chesneau',
|
|
author_email = 'benoitc@e-engura.com',
|
|
license = 'Apache License 2',
|
|
url = 'http://github.com/benoitc/gunicorn',
|
|
|
|
classifiers = [
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Other Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: MacOS :: MacOS X',
|
|
'Operating System :: POSIX',
|
|
'Programming Language :: Python',
|
|
'Topic :: Internet,'
|
|
'Topic :: Utilities',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
|
|
packages = find_packages(),
|
|
include_package_data = True,
|
|
scripts = ['bin/gunicorn'],
|
|
|
|
)
|
|
|