Skip to content

Commit 873898d

Browse files
committed
Version 0.0.5post1
- Fixed extras not included in Python package
1 parent 5218881 commit 873898d

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

setup.py

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from os import path
1616

17-
pkg_version = '0.0.5'
17+
pkg_version = '0.0.5post1'
1818

1919
env = os.environ.copy()
2020

@@ -143,6 +143,17 @@ def build_package():
143143
(os.path.join(eC_dir, 'crossplatform.mk'), 'crossplatform.mk'),
144144
(os.path.join(eC_dir, 'default.cf'), 'default.cf'),
145145
(os.path.join(eC_dir, 'extras', 'testing', 'testingFramework.ec'), os.path.join('extras', 'testing', 'testingFramework.ec')),
146+
(os.path.join(eC_dir, 'extras', 'base64.ec'), os.path.join('extras', 'base64.ec')),
147+
(os.path.join(eC_dir, 'extras', 'BinaryTriangle.ec'), os.path.join('extras', 'BinaryTriangle.ec')),
148+
(os.path.join(eC_dir, 'extras', 'FileSystemAPI.ec'), os.path.join('extras', 'FileSystemAPI.ec')),
149+
(os.path.join(eC_dir, 'extras', 'iso8601.ec'), os.path.join('extras', 'iso8601.ec')),
150+
(os.path.join(eC_dir, 'extras', 'JSONSchema.ec'), os.path.join('extras', 'JSONSchema.ec')),
151+
(os.path.join(eC_dir, 'extras', 'md5.ec'), os.path.join('extras', 'md5.ec')),
152+
(os.path.join(eC_dir, 'extras', 'protocolBuffer.ec'), os.path.join('extras', 'protocolBuffer.ec')),
153+
(os.path.join(eC_dir, 'extras', 'stringTools.ec'), os.path.join('extras', 'stringTools.ec')),
154+
(os.path.join(eC_dir, 'extras', 'stringUtils.ec'), os.path.join('extras', 'stringUtils.ec')),
155+
(os.path.join(eC_dir, 'extras', 'threadedProcessing.ec'), os.path.join('extras', 'threadedProcessing.ec')),
156+
(os.path.join(eC_dir, 'extras', 'XMLParser.ec'), os.path.join('extras', 'XMLParser.ec'))
146157
], artifacts_dir)
147158
except subprocess.CalledProcessError as e:
148159
print(f"Error during make: {e}")
@@ -220,7 +231,18 @@ def get_tag(self):
220231
])
221232

222233
extras_files = [
223-
'testing/testingFramework.ec'
234+
'testing/testingFramework.ec',
235+
'base64.ec',
236+
'BinaryTriangle.ec',
237+
'FileSystemAPI.ec',
238+
'iso8601.ec',
239+
'JSONSchema.ec',
240+
'md5.ec',
241+
'protocolBuffer.ec',
242+
'stringTools.ec',
243+
'stringUtils.ec',
244+
'threadedProcessing.ec',
245+
'XMLParser.ec'
224246
]
225247

226248
commands = set(sys.argv)

0 commit comments

Comments
 (0)