Day 2 - Fancy Math project #3

Merged
TimDiller merged 1 commits from project_init into main 2025-10-21 19:32:48 +00:00
5 changed files with 21 additions and 0 deletions
Showing only changes of commit 1307627cba - Show all commits

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*~
*.pyc
*__pycache__
*.egg-info

View File

@@ -3,6 +3,12 @@ This README takes the place of the usual spots on the public.dillerdigital.com s
- [Class Recordings on OneDrive](https://dillerdigital-my.sharepoint.com/:f:/g/personal/tim_dillerdigital_onmicrosoft_com/Eh74L3f0Z1hFvIul8oCvmb0BnRL9-b59aM-6J5jd1tuQ_A?e=wjcFeW) (Access expires 7 Nov 2025)
# Fancy Math Project
- Install for editing from top level of this repo:
```
$ pip install -e .
```
# Day 1 Resources
- [Our class repository on the Diller Digital git server](https://git.dillerdigital.com/DillerDigitalStudents/DD-SWNG-20251020-V)
- [Help for SSH errors](https://docs.gitea.com/help/faq?_highlight=ssh#ssh-common-errors)

8
pyproject.toml Normal file
View File

@@ -0,0 +1,8 @@
[project]
name = "fancymath"
version = "0.0.1"
readme = "README.md"
[build-system]
requires = ["setuptools>61"]
build-backend = "setuptools.build_meta"

View File

@@ -0,0 +1 @@
import fancymath.math

2
src/fancymath/math.py Normal file
View File

@@ -0,0 +1,2 @@
def add(x1, x2):
return x1 + x2