forked from dieseldev/diesel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (44 loc) · 1.74 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import sys
assert sys.version_info >= (2, 6), \
"Diesel requires python 2.6 (or greater 2.X release)"
from setuptools import setup
additional_requires = []
VERSION = "2.1.1"
setup(name="diesel",
version=VERSION,
author="Jamie Turner/Boomplex LLC/Bump Technologies, Inc/Various Contributors",
author_email="[email protected]",
description="Diesel is a coroutine-based networking library for Python",
long_description='''
diesel is a framework for easily writing reliable and scalable network
applications in Python. It uses the greenlet library layered atop
asynchronous socket I/O in Python to achieve benefits of both
the threaded-style (linear, blocking-ish code flow) and evented-style
(no locking, low overhead per connection) concurrency paradigms. It's
design is heavily inspired by the Erlang/OTP platform.
It contains high-quality buffering, queuing and synchronization primitives,
procedure supervision and supervision trees, connection pools, seamless
thread integration, and more.
An HTTP/1.1+WSGI+WebSockets implementation is included, as well as tight
integration with the Flask web framework.
Other bundled protocols include MongoDB, Riak, and Redis client libraries.
''',
url="http://dieselweb.org",
download_url="http://jamwt.com/diesel/diesel-%s.tar.gz" % VERSION,
packages=["diesel", "diesel.protocols", "diesel.util"],
scripts=["examples/dhttpd"],
entry_points={
'console_scripts': [
'dpython = diesel.interactive:python',
'idpython = diesel.interactive:ipython',
'dnosetests = diesel.dnosetests:main',
],
},
install_requires=([
"greenlet",
"pyev",
"pyopenssl",
"flask",
"dnspython",
] + additional_requires),
)