Skip to content

Instantly share code, notes, and snippets.

@kmcminn
Created December 12, 2019 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmcminn/7ca38f99c58caeac343c6a101206731c to your computer and use it in GitHub Desktop.
Save kmcminn/7ca38f99c58caeac343c6a101206731c to your computer and use it in GitHub Desktop.
diff setup.py
diff --git a/setup.py b/setup.py
index 61f710a..73eacc7 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@
"""
from os import path
-from setuptools import setup
+from setuptools import setup, find_packages
PWD = path.abspath(path.dirname(__file__))
@@ -42,7 +42,7 @@ setup(
'Programming Language :: Python :: 3.7',
],
keywords='google cloud storage nearline coldline archive',
- packages=['gcs_sa'], # TODO: more specific
+ packages=find_packages(), exclude=["tests"],
python_requires='>=3.5, <4',
install_requires=[
'google-cloud-bigquery',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment