Skip to content
Snippets Groups Projects
Commit f799a5a6 authored by Hameed Andy's avatar Hameed Andy
Browse files

files updated

parent a133242d
No related branches found
No related tags found
No related merge requests found
# Project Name # Snake 2.o
This folder contains the project schedule Gantt Chart. This folder contains the project schedule Gantt Chart.
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><project name="3XA3: Team Project" company="" webLink="http://" view-date="2018-11-01" view-index="0" gantt-divider-location="300" resource-divider-location="300" version="2.8.9" locale="en_CA"> <?xml version="1.0" encoding="UTF-8"?><project name="3XA3: Team Project" company="" webLink="http://" view-date="2018-10-17" view-index="0" gantt-divider-location="300" resource-divider-location="300" version="2.8.9" locale="en_CA">
<description><![CDATA[Developing the clasical Snake game using python and front-end development languages.]]></description> <description><![CDATA[Developing the clasical Snake game using python and front-end development languages.]]></description>
<view zooming-state="default:2" id="gantt-chart"> <view zooming-state="default:2" id="gantt-chart">
<field id="tpd3" name="Name" width="163" order="0"/> <field id="tpd3" name="Name" width="163" order="0"/>
...@@ -46,7 +46,7 @@ ...@@ -46,7 +46,7 @@
<task id="26" name="Project Schedule" color="#8cb6ce" meeting="false" start="2018-09-28" duration="1" complete="100" thirdDate="2018-09-13" thirdDate-constraint="0" expand="true"/> <task id="26" name="Project Schedule" color="#8cb6ce" meeting="false" start="2018-09-28" duration="1" complete="100" thirdDate="2018-09-13" thirdDate-constraint="0" expand="true"/>
<task id="27" name="Project review" color="#8cb6ce" meeting="false" start="2018-09-28" duration="1" complete="100" thirdDate="2018-09-13" thirdDate-constraint="0" expand="true"/> <task id="27" name="Project review" color="#8cb6ce" meeting="false" start="2018-09-28" duration="1" complete="100" thirdDate="2018-09-13" thirdDate-constraint="0" expand="true"/>
</task> </task>
<task id="8" name="Requirements Document Revision" color="#6666ff" meeting="false" project="true" start="2018-10-01" duration="5" complete="100" thirdDate="2018-09-27" thirdDate-constraint="0" expand="false"> <task id="8" name="Requirements Document Revision" color="#6666ff" meeting="false" start="2018-10-01" duration="5" complete="100" thirdDate="2018-09-27" thirdDate-constraint="0" expand="false">
<task id="31" name="Project Drivers" color="#8cb6ce" meeting="false" start="2018-10-01" duration="2" complete="100" thirdDate="2018-09-17" thirdDate-constraint="0" expand="true"/> <task id="31" name="Project Drivers" color="#8cb6ce" meeting="false" start="2018-10-01" duration="2" complete="100" thirdDate="2018-09-17" thirdDate-constraint="0" expand="true"/>
<task id="49" name="Functional Requirements" color="#8cb6ce" meeting="false" start="2018-10-02" duration="2" complete="100" thirdDate="2018-09-12" thirdDate-constraint="0" expand="true"/> <task id="49" name="Functional Requirements" color="#8cb6ce" meeting="false" start="2018-10-02" duration="2" complete="100" thirdDate="2018-09-12" thirdDate-constraint="0" expand="true"/>
<task id="42" name="Non-Functional Requirements" color="#8cb6ce" meeting="false" start="2018-10-02" duration="2" complete="100" thirdDate="2018-09-12" thirdDate-constraint="0" expand="true"/> <task id="42" name="Non-Functional Requirements" color="#8cb6ce" meeting="false" start="2018-10-02" duration="2" complete="100" thirdDate="2018-09-12" thirdDate-constraint="0" expand="true"/>
......
...@@ -10,4 +10,7 @@ This project is a reimplementation of Snake, an open-source front-end implementa ...@@ -10,4 +10,7 @@ This project is a reimplementation of Snake, an open-source front-end implementa
The folders and files for this project are as follows: The folders and files for this project are as follows:
Doc - Documentation for the project Doc - Documentation for the project
Code - Implementation Doc_Revision1 - Latest Documentation for the project
POC-Demo - Demo for Proof of Concept
ProjectSchedule - gantt chart as pdf and .gan file
src - Implementation
import cx_Freeze
from cx_Freeze import *
setup (
name = "Interface",
options = {'build_exe': {'packages': ['pygame']}},
executables = [
Executable (
"Snake2.0.py",
)
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment