~wibblymat/ubuntu/oneiric/python-oauth/replace-pycentral

1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages

setup(name="oauth",
      version="1.0",
      description="Library for OAuth",
      author="Leah Culver",
      author_email="leah.culver@gmail.com",
      url="http://code.google.com/p/oauth",
      packages = find_packages(),
      zip_safe = True)