-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython-build.xml
More file actions
30 lines (22 loc) · 857 Bytes
/
python-build.xml
File metadata and controls
30 lines (22 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!--
Turnstone Biologics Confidential
2018 Turnstone Biologics, Inc.
All Rights Reserved.
This file is subject to the terms and conditions defined in
file 'license.txt', which is part of this source code package.
Contributors :
Turnstone Biologics - General Release
-->
<project name="python-django-project" default="all" basedir=".">
<target name="all" depends="python-django"/>
<property environment="os"/>
<!--
**** Package the files and push (publish) to the provided PyPI repository
-->
<target name="python-django"
description="PyPI the package to push to the repository...">
<exec executable="bash" logError="true" failonerror="false" failifexecutionfails="false">
<arg value="./python-build.sh"/>
</exec>
</target>
</project>