Skip to content
This repository was archived by the owner on Jan 18, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include README.md
recursive-exclude tests *
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,9 @@
print('oauth2client requires python3 version >= 3.3.', file=sys.stderr)
sys.exit(1)

from setuptools import find_packages
from setuptools import setup

packages = [
'oauth2client',
]

install_requires = [
'httplib2>=0.9.1',
'pyasn1>=0.1.7',
Expand All @@ -55,7 +52,7 @@
author="Google Inc.",
url="https://github.com/google/oauth2client/",
install_requires=install_requires,
packages=packages,
packages=find_packages(),
license="Apache 2.0",
keywords="google oauth 2.0 http client",
classifiers=[
Expand Down