Files
deb-python-falcon/falcon/bench/nuts/setup.py
kgriffs 65b6539ec3 refactor(bench): Moved folder under falcon/ and added entrypoint to setup.py
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.
2013-04-23 17:38:44 -04:00

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'])
)