Skip to content

Instantly share code, notes, and snippets.

@mattd
Created February 3, 2012 21:02
Show Gist options
  • Save mattd/1732578 to your computer and use it in GitHub Desktop.
Save mattd/1732578 to your computer and use it in GitHub Desktop.
from setuptools import setup, find_packages
setup(
name='spriggan',
version='0.1',
description="this. is. spriggan.",
long_description=__doc__,
packages=find_packages(),
zip_safe=False,
install_requires=[
'Flask'
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment