aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: c19e801fe5e477749692cf8a033fddcc6cd1c68e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages

import sys

setup(
    name = "mediagoblin",
    version = "0.0.1",
    packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
    zip_safe=False,
    license = 'AGPLv3',
    author = 'Christopher Webber',
    author_email = 'cwebber@dustycloud.org',
    entry_points = """\
      [paste.app_factory]
      mediagoblin = mediagoblin.app:paste_app_factory
      """,
    )