mirror of
https://github.com/django/daphne.git
synced 2025-04-25 03:03:47 +03:00
* Make benchmark installable module. * Use passed url in the Benchmarker constructor. * Correct percentile output. * Import reactor globally. Since it used in the benchmarker.
8 lines
146 B
Python
8 lines
146 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='channels-benchmark',
|
|
py_modules=['benchmark'],
|
|
install_requires=['autobahn', 'Twisted'],
|
|
)
|