Tweaks the "if mongodb isn't working" troubleshooting section
[mediagoblin.git] / setup.py
CommitLineData
8e1e744d 1# GNU MediaGoblin -- federated, autonomous media hosting
e5572c60
ML
2# Copyright (C) 2011 Free Software Foundation, Inc
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
31a8ff42
CAW
17from setuptools import setup, find_packages
18
19import sys
20
21setup(
22 name = "mediagoblin",
23 version = "0.0.1",
24 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
25 zip_safe=False,
0c04118b
CAW
26 # scripts and dependencies
27 install_requires = [
28 'setuptools',
29 'PasteScript',
30 'beaker',
31 'routes',
32 'pymongo',
508775bd 33 'mongokit',
0c04118b
CAW
34 'webob',
35 'wtforms',
6755f50e 36 'py-bcrypt',
4b5f4e87 37 'nose',
9578fe50 38 'werkzeug',
6bcab715 39 'celery',
132a68b5
CAW
40 'jinja2',
41 'sphinx',
883cf497 42 'PIL',
0c04118b 43 ],
4b5f4e87 44 test_suite='nose.collector',
0c04118b 45
31a8ff42
CAW
46 license = 'AGPLv3',
47 author = 'Christopher Webber',
e5572c60 48 author_email = 'cwebber@gnu.org',
31a8ff42
CAW
49 entry_points = """\
50 [paste.app_factory]
0c04118b 51 app = mediagoblin.app:paste_app_factory
df0953ce
CAW
52
53 [zc.buildout]
54 make_user_dev_dirs = mediagoblin.buildout_recipes:MakeUserDevDirs
31a8ff42
CAW
55 """,
56 )