aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: a250ce85642629b9066f0e52df7709bd2578e69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

from distutils.core import setup

setup(
    name='sphinx_ascii_theme',
    version='0.1.0',
    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',
        ]
    },
)