from distribute_setup import use_setuptools
use_setuptools()

from setuptools import setup


setup(
    name='${name}',
    version='${version}',
    author='${author}',
    author_email='${author_email}',
    packages=['${name}'],
    url='${url}',
    license='See LICENSE.txt',
    description='${description}',
    long_description=open('README.txt').read(),
)
