|
24 | 24 | packages=[
|
25 | 25 | 'metamist_infrastructure',
|
26 | 26 | 'metamist_infrastructure.etl',
|
27 |
| - 'metamist_infrastructure.etl.endpoint', |
| 27 | + 'metamist_infrastructure.etl.post', |
| 28 | + 'metamist_infrastructure.etl.load', |
28 | 29 | ],
|
29 | 30 | package_dir={
|
30 | 31 | # files in THIS directory are included as metamist_infrastructure
|
31 | 32 | 'metamist_infrastructure': '.',
|
32 | 33 | # files in ../etl are included as metamist_infrastructure.etl
|
33 | 34 | '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', |
36 | 39 | },
|
37 | 40 | package_data={
|
38 | 41 | # ensure bq_schema.json is included in etl
|
39 | 42 | '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'], |
42 | 47 | },
|
43 | 48 | install_requires=[],
|
44 | 49 | entry_points={
|
|
0 commit comments