Day 2 - Fancy Math project #3
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
*~
|
||||
*.pyc
|
||||
*__pycache__
|
||||
*.egg-info
|
||||
@@ -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
8
pyproject.toml
Normal 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"
|
||||
1
src/fancymath/__init__.py
Normal file
1
src/fancymath/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
import fancymath.math
|
||||
2
src/fancymath/math.py
Normal file
2
src/fancymath/math.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def add(x1, x2):
|
||||
return x1 + x2
|
||||
Reference in New Issue
Block a user