Skip to content
This repository was archived by the owner on May 20, 2022. It is now read-only.

Commit 6d7627a

Browse files
committed
config: fix requirements in 'setup.py'
1 parent 3a8357c commit 6d7627a

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

setup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
with open('README.md') as readme_file:
66
readme = readme_file.read()
77

8+
# TODO: add reasonable upper-bound per package.
89
requirements = [
10+
'cryptography>=2.4.2',
11+
'google-api-python-client>=1.7.4',
12+
'google-auth>=1.6.1',
13+
'requests>=2.20.1',
914
]
1015

1116
# extras_requirements = {
@@ -15,6 +20,8 @@
1520
]
1621

1722
test_requirements = [
23+
# note: include here only packages **imported** in test code (e.g. 'requests-mock'), NOT those
24+
# like 'coverage' or 'tox'.
1825
]
1926

2027
# TODO: extract from '__version__' in 'fd_gcp/__init__.py'.

0 commit comments

Comments
 (0)