diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2016-08-03 11:05:21 +0800 |
---|---|---|
committer | shangxdy <shang.xiaodong@zte.com.cn> | 2016-08-03 11:46:25 +0800 |
commit | f8faed12d30683ae0dd3ab08991712ed3c33d703 (patch) | |
tree | a444a100005576dc0ca9234749953e8ef5324861 /tosca2heat | |
parent | c94de2c8594b8a5176bda7ad9a491f8a8133b09f (diff) |
Parser miss files(*.conf, *.yaml, *.meta, *.sh) when create a
distribution
when create a source or binary distribution, Parser project miss the
follow files:
1. heat_translator
1) heat_translator_logging.conf;
2) translator.conf
3) all yaml files in tests directories;
4) all bash script in tests directories;
5) all python script in tests directories;
2. toscad-parser
1) TOSCA_definition_1_0.yaml in elements directory;
2) TOSCA_nfv_definition_1_0.yaml in nfv directory;
3) all yaml files in tests directories;
4) all bash script in tests directories;
5) all python script in tests directories;
All the missed files above will cause the parser work failure
JIRA:PARSER-75
Change-Id: I124eeff4b94607a68cbba2f2d7f754cba8671a42
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tosca2heat')
-rw-r--r-- | tosca2heat/heat-translator/MANIFEST.in | 10 | ||||
-rw-r--r-- | tosca2heat/tosca-parser/MANIFEST.in | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/tosca2heat/heat-translator/MANIFEST.in b/tosca2heat/heat-translator/MANIFEST.in index 90f8a7a..1fc29b3 100644 --- a/tosca2heat/heat-translator/MANIFEST.in +++ b/tosca2heat/heat-translator/MANIFEST.in @@ -1,6 +1,14 @@ include AUTHORS include ChangeLog +global-include *.py +global-include *.yaml +global-include *.sh +global-include *.txt +global-include *.csar +global-include *.zip +global-include *.meta +global-include *.conf exclude .gitignore exclude .gitreview -global-exclude *.pyc
\ No newline at end of file +global-exclude *.pyc diff --git a/tosca2heat/tosca-parser/MANIFEST.in b/tosca2heat/tosca-parser/MANIFEST.in index 90f8a7a..1fc29b3 100644 --- a/tosca2heat/tosca-parser/MANIFEST.in +++ b/tosca2heat/tosca-parser/MANIFEST.in @@ -1,6 +1,14 @@ include AUTHORS include ChangeLog +global-include *.py +global-include *.yaml +global-include *.sh +global-include *.txt +global-include *.csar +global-include *.zip +global-include *.meta +global-include *.conf exclude .gitignore exclude .gitreview -global-exclude *.pyc
\ No newline at end of file +global-exclude *.pyc |