mirror of
https://github.com/jrconlin/oauthsimple.git
synced 2026-07-28 04:06:51 +00:00
26 lines
744 B
Python
26 lines
744 B
Python
#!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=[],
|
|
)
|