Skip to content

Commit f34c8b6

Browse files
author
Milo Hyben
committed
Update metamist_infrastructure setup to contain new cloud function.
1 parent a36f0e2 commit f34c8b6

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

metamist_infrastructure/setup.py

+10-5
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,26 @@
2424
packages=[
2525
'metamist_infrastructure',
2626
'metamist_infrastructure.etl',
27-
'metamist_infrastructure.etl.endpoint',
27+
'metamist_infrastructure.etl.post',
28+
'metamist_infrastructure.etl.load',
2829
],
2930
package_dir={
3031
# files in THIS directory are included as metamist_infrastructure
3132
'metamist_infrastructure': '.',
3233
# files in ../etl are included as metamist_infrastructure.etl
3334
'metamist_infrastructure.etl': '../etl',
34-
# files in ../etl/endpoint are included as metamist_infrastructure.etl.endpoint
35-
'metamist_infrastructure.etl.endpoint': '../etl/endpoint',
35+
# files in ../etl/post are included as metamist_infrastructure.etl.post
36+
'metamist_infrastructure.etl.post': '../etl/post',
37+
# files in ../etl/load are included as metamist_infrastructure.etl.load
38+
'metamist_infrastructure.etl.load': '../etl/load',
3639
},
3740
package_data={
3841
# ensure bq_schema.json is included in etl
3942
'metamist_infrastructure.etl': ['*.json'],
40-
# ensure requirements.txt is included in etl.endpoint
41-
'metamist_infrastructure.etl.endpoint': ['*.txt'],
43+
# ensure requirements.txt is included in etl.post
44+
'metamist_infrastructure.etl.post': ['*.txt'],
45+
# ensure requirements.txt is included in etl.load
46+
'metamist_infrastructure.etl.load': ['*.txt'],
4247
},
4348
install_requires=[],
4449
entry_points={

0 commit comments

Comments
 (0)