Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .Rhistory
Empty file.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# COMPSS-211-Final-Project-Template-Repo
Template repository for COMPSS-211 Final Projects

## Contributors

### Sanjana Karthick
I will be working on data collection and cleaning for our project.
this is my edit
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "mypkg"
name = "Language_Around_Homelesness_Project"
version = "0.0.1"
description = "Final Project Group Repository for COMPSS-211"
description = "Final Project Group 6 Repository for COMPSS-211"
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
Expand All @@ -11,4 +11,4 @@ requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
package-dir = {"" = "src"}
package-dir = {"" = "src"}
3 changes: 3 additions & 0 deletions scripts/hello_sanjana.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
name = "[Your Name]"
print(f"Hello from {name}!")
print("This is my first script in our group project.")
11 changes: 11 additions & 0 deletions scripts/hello_sanya.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
"""
A simple hello world script by [Your Name]
"""
name = "[Your Name]"
print(f"Hello from {name}!")
print("This is my first script in our group project.")

# Add a simple calculation
favorite_number = 42 # Change this to your actual favorite number
result = favorite_number * 2
print(f"My favorite number times 2 is: {result}")
File renamed without changes.