Files
deb-python-falcon/bench/nuts/setup.py
2013-01-25 18:10:17 -05: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'])
)