Initial mediagoblin structure

This commit is contained in:
Christopher Allan Webber
2010-07-17 11:33:08 -05:00
commit 31a8ff4288
7 changed files with 112 additions and 0 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,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
""",
)