Skip to content

Commit

Permalink
Add basic setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ghickman committed Mar 13, 2012
1 parent db08037 commit f5946ed
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
@@ -0,0 +1,20 @@
from os.path import dirname, join
from setuptools import setup, find_packages


def fread(fn):
with open(join(dirname(__file__), fn), 'r') as f:
return f.read()

setup(
name = 'oauthlib',
version = '0.0.1',
description = 'Python implementation of OAuth 1.0a',
long_description = fread('README.rst'),
author = '',
author_email = '',
url = 'https://github.com/idangazit/oauthlib',
license = fread('LICENSE'),
packages = find_packages(exclude=('tests', 'docs')),
)

0 comments on commit f5946ed

Please sign in to comment.