Adding egg builders

This commit is contained in:
jrconlin
2011-11-28 15:40:25 -08:00
parent 02c375640c
commit e0dfe74641
3 changed files with 29 additions and 0 deletions
Binary file not shown.
+4
View File
@@ -0,0 +1,4 @@
OAuthSimple for Python
See http://jrconlin.com/oauthsimple for details
+25
View File
@@ -0,0 +1,25 @@
#!env python
from setuptools import setup
setup(
name='oauthsimple',
version='1.0',
description='Simple OAuth 1.0 signature generator',
author='JR Conlin',
author_email='jrconlin+oauthsimple@gmail.com',
url='https://github.com/jrconlin/oauthsimple',
packages=['OAuthSimple'],
long_description=""""
Generate OAuth 1.0 signatures easily. See the URL for details and examples.
""",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Develoipers",
"Topic :: Internet"],
keywords='networking oauth authorization',
license='BSD',
install_requires=[],
)