This patch moves the benchmark folder down a level (under falcon/), and cleans it up a bit. There is now an entrypoint that gets installed, called falcon-bench, to make it easier to run benchmarks. Falcon-bench will print out a message for every framework it can't import; by default only Falcon can be benchmarked.
21 lines
463 B
Python
21 lines
463 B
Python
# -*- coding: utf-8 -*-
|
|
try:
|
|
from setuptools import setup, find_packages
|
|
except ImportError:
|
|
from ez_setup import use_setuptools
|
|
use_setuptools()
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='nuts',
|
|
version='0.1',
|
|
description='',
|
|
author='',
|
|
author_email='',
|
|
install_requires=['pecan'],
|
|
test_suite='nuts',
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
packages=find_packages(exclude=['ez_setup'])
|
|
)
|