Skip to content

Instantly share code, notes, and snippets.

@amcgregor
Created February 18, 2010 08:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amcgregor/307488 to your computer and use it in GitHub Desktop.
Save amcgregor/307488 to your computer and use it in GitHub Desktop.
The setup.py file for the basic WebCore Wiki example.
#!/usr/bin/env python
import sys, os
from setuptools import setup, find_packages
setup(
name = "MegaWiki",
version = "0.1",
description = "A powerful Wiki example!",
author = "Your Name Here",
author_email = "Your E-Mail Here",
license = "MIT",
packages = find_packages(),
include_package_data = True,
paster_plugins = ['PasteScript', 'WebCore'],
install_requires = ['WebCore', 'SQLAlchemy', 'Beaker', 'Genshi', 'textile']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment