Skip to content

Commit 1998cd6

Browse files
adding setup.py so that this can be installed more easily
git-svn-id: https://oauth.googlecode.com/svn/code/python@819 f7ae4463-c52f-0410-a7dc-93bad6e629e8
1 parent 5fa7ab3 commit 1998cd6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

setup.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python
2+
#from distutils.core import setup
3+
from setuptools import setup, find_packages
4+
5+
setup(name="oauth",
6+
version="1.0",
7+
description="Library for OAuth",
8+
author="Leah Culver",
9+
author_email="[email protected]",
10+
url="http://code.google.com/p/oauth",
11+
packages = find_packages(),
12+
zip_safe = True)

0 commit comments

Comments
 (0)