aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 27521157a74efd797eedac56bba23a82aa7a6770 (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.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',
        ]
    },
)