diff --git a/.Rhistory b/.Rhistory new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md index 5201399..001dc68 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index c0fe43e..38bb997 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [] @@ -11,4 +11,4 @@ requires = ["setuptools>=69", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools] -package-dir = {"" = "src"} +package-dir = {"" = "src"} \ No newline at end of file diff --git a/scripts/hello_sanjana.py b/scripts/hello_sanjana.py new file mode 100644 index 0000000..665aaf7 --- /dev/null +++ b/scripts/hello_sanjana.py @@ -0,0 +1,3 @@ +name = "[Your Name]" +print(f"Hello from {name}!") +print("This is my first script in our group project.") \ No newline at end of file diff --git a/scripts/hello_sanya.py b/scripts/hello_sanya.py new file mode 100644 index 0000000..70d8a8e --- /dev/null +++ b/scripts/hello_sanya.py @@ -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}") diff --git a/src/mypkg/mymodule.py b/src/Language_Around_Homelesness_Project/mymodule.py similarity index 100% rename from src/mypkg/mymodule.py rename to src/Language_Around_Homelesness_Project/mymodule.py