summaryrefslogtreecommitdiff
path: root/setup.py
blob: d9963bdd23a418a326fe6930ada43551fc06f605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages

setup(
    name="CruteMoinModernizedTheme",
    version="1.0",
    description="",
    author="Michael Crute <mcrute@gmail.com>",
    license="MIT",
    packages=find_packages(),
    entry_points={
#        "moin.plugins.action": [
#        ],
#        "moin.plugins.converter": [
#        ],
#        "moin.plugins.events": [
#        ],
#        "moin.plugins.filter": [
#        ],
#        "moin.plugins.formatter": [
#        ],
#        "moin.plugins.macro": [
#        ],
#        "moin.plugins.parser": [
#        ],
        "moin.plugins.theme": [
            "crute_modernized = mcrute_theme.crute_modernized:Theme",
        ],
#        "moin.plugins.userprefs": [
#        ],
#        "moin.plugins.xmlrpc": [
#        ],
    },
    data_files=[
        ("static", (
            "static/dnd-upload.js",
            "static/favicon.ico",
            "static/iphone-icon.png",
            "static/logo.png",
            "static/mcrute.css",
        )),
    ]
)