#!/usr/bin/env python from distutils.core import setup setup( name='sphinx_ascii_theme', version='0.1.1', description='A simple ascii theme', author='neodarz', author_email='neodarz@neodarz.net', packages=["sphinx_ascii_theme"], entry_points = { 'sphinx.html_themes': [ 'ascii = sphinx_ascii_theme', ] }, )