-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added .gitignore file * Added .travis.yml file * Updated .gitignore and .travis.yml * Removed unnecessary comment * Added citation.md file, Zenodo details are yet to be updated * Updated .travis.yml file * Updated .gitignore * Added zenodo details
- Loading branch information
1 parent
fec346d
commit af97912
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#What is gitignore? | ||
#When you’re working in your copy, Git watches every file in and considers it in three ways: | ||
|
||
#Tracked: You’ve already staged or committed the file. | ||
#Untracked: You’ve not staged or committed. | ||
#Ignored: You’ve explicitly told Git to ignore the file(s). | ||
#The .gitignore file tells Git which files to ignore when committing your project to the GitHub repository. gitignore is located in the root directory of your repo. | ||
|
||
|
||
#Why do I need to ignore files in Git? | ||
#You may want to ignore certain files for multiple reasons: | ||
|
||
#The files contain sensitive data. | ||
#The files are system specific and do not need to exist on every machine’s copy. | ||
#Excluding the files maintains system security rules and privileges. (Remember, Git repos only contain the files necessary to get tech support—not to share the entire software. | ||
|
||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
*.so | ||
Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#. travis. yml is a configuration file, which provides instructions to the testing and building software on how to run tests and build any files required by the project. | ||
|
||
language: python | ||
python: | ||
-"3.6" | ||
install: | ||
- pip install -r requirements.txt | ||
script: | ||
- pytest | ||
s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Manish Shinde, Nihar Rao, Saksham Pandey, Shruti Verma, Palash Jhamb | ||
|
||
Software Engineering Homework 1 | ||
|
||
August 2022 | ||
|
||
@software{SE_HW1, | ||
title = Software Engineering Homework 1}, | ||
DOI = {10.5281/zenodo.7029975}, | ||
url = {https://doi.org/10.5281/zenodo.7029975} | ||
author = {Manish Shinde, Nihar Rao, Saksham Pandey, Shruti Verma, Palash Jhamb}, | ||
publisher = {Zenodo}, | ||
year = {2022}, | ||
month = {August} | ||
} |