Created
December 12, 2019 21:14
-
-
Save kmcminn/7ca38f99c58caeac343c6a101206731c to your computer and use it in GitHub Desktop.
diff setup.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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