mirror of
https://github.com/jrconlin/oauthsimple.git
synced 2026-07-28 04:06:51 +00:00
Adding egg builders
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
OAuthSimple for Python
|
||||
|
||||
See http://jrconlin.com/oauthsimple for details
|
||||
|
||||
@@ -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=[],
|
||||
)
|
||||
Reference in New Issue
Block a user