Merge pull request #382 from dhermes/fix-setup
Updating setup.py and MANIFEST to include all subdirs.
This commit is contained in:
@@ -1 +1,2 @@
|
|||||||
include README.md
|
include README.md
|
||||||
|
recursive-exclude tests *
|
||||||
|
|||||||
7
setup.py
7
setup.py
@@ -28,12 +28,9 @@ if (3, 1) <= sys.version_info < (3, 3):
|
|||||||
print('oauth2client requires python3 version >= 3.3.', file=sys.stderr)
|
print('oauth2client requires python3 version >= 3.3.', file=sys.stderr)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
from setuptools import find_packages
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
packages = [
|
|
||||||
'oauth2client',
|
|
||||||
]
|
|
||||||
|
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'httplib2>=0.9.1',
|
'httplib2>=0.9.1',
|
||||||
'pyasn1>=0.1.7',
|
'pyasn1>=0.1.7',
|
||||||
@@ -55,7 +52,7 @@ setup(
|
|||||||
author="Google Inc.",
|
author="Google Inc.",
|
||||||
url="http://github.com/google/oauth2client/",
|
url="http://github.com/google/oauth2client/",
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
packages=packages,
|
packages=find_packages(),
|
||||||
license="Apache 2.0",
|
license="Apache 2.0",
|
||||||
keywords="google oauth 2.0 http client",
|
keywords="google oauth 2.0 http client",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|||||||
Reference in New Issue
Block a user