forked from zbowling/python-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 761 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
setup(name="oauth2",
version="1.2.1",
description="Library for OAuth version 1.0a.",
author="Joe Stump",
author_email="joe@simplegeo.com",
maintainer="Zac Bowling",
maintainer_email="zac@zacbowling.com",
url="http://github.com/simplegeo/python-oauth2",
packages = find_packages(),
install_requires = ['httplib2'],
license = "MIT License",
keywords="oauth",
zip_safe = True,
tests_require=['nose', 'coverage', 'mox'],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Stable',
'Programming Language :: Python',
]
)