Navigation Menu

Skip to content

Commit

Permalink
More setup polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Oct 18, 2011
1 parent 2269e3a commit fe67f7f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions .hgignore
Expand Up @@ -8,4 +8,5 @@ syntax: glob
*.egg-info
*/pip-delete-this-directory.txt
build/*
dist/*
docs/_build
5 changes: 5 additions & 0 deletions README
Expand Up @@ -2,6 +2,11 @@ This is Mantrid, a pure-Python load balancer designed for environments with larg

It trades some raw speed for flexibility, but is still designed to be fast; the aim is to have latency of no more than 10ms, and no more than a 10% reduction in throughput.

COMPATABILITY
=============

Mantrid is designed to work with Python 2.6 or 2.7, and requires a Python implementation that supports greenlets (so either CPython or PyPy 1.7 and up).


CONFIGURATION
=============
Expand Down
11 changes: 10 additions & 1 deletion setup.py
Expand Up @@ -11,9 +11,11 @@
setup(
name = 'mantrid',
version = __version__,
author = "Epio Limited",
author_email= "team@ep.io",
description = 'A pure-Python loadbalancer.',
packages = find_packages("."),
classifiers=[
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
Expand All @@ -23,4 +25,11 @@
mantrid = mantrid.loadbalancer:Balancer.main
mantrid-client = mantrid.cli:MantridCli.main
""",
package_data = {
"mantrid": ["errors/*.http"],
},
requires = [
"argparse",
"eventlet (>=0.9.16)",
],
)

0 comments on commit fe67f7f

Please sign in to comment.