Skip to content

Commit 0dd3340

Browse files
committed
initial set-up: still need to manually create the env and install packages...
1 parent a634b9d commit 0dd3340

6 files changed

+40
-1
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,13 @@ cython_debug/
169169

170170
# PyPI configuration file
171171
.pypirc
172+
173+
# data storage
174+
data/
175+
*.csv
176+
177+
# tableau
178+
*.twb*
179+
180+
# scratch files -- uncomment below after the project has been pulled from the repo
181+
# scratch*

.python-version

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# stick with python 3.9 for DU IR projects
2+
3.9

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# project_template_python
2-
my standard python project template
2+
My standard python project. Will change frequently until I'm happy with it.
3+
4+
Use uv to create .venv and install packages

requirements.txt

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This is just the bare minimum that I'm comfortable with
2+
am-ir-functions @ git+https://github.com/udenira/AM_IR_Functions.git@ce3d19a6d4082c283572c2f4d0537e6a4400b805
3+
icecream==2.1.4
4+
ipykernel==6.29.5
5+
numpy==2.0.2
6+
openpyxl==3.1.5
7+
oracledb==2.5.1
8+
pandas==2.2.3
9+
ruff==0.9.1

scratch.ipynb

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"cells": [],
3+
"metadata": {
4+
"kernelspec": {
5+
"display_name": ".venv",
6+
"language": "python",
7+
"name": "python3"
8+
},
9+
"language_info": {
10+
"name": "python",
11+
"version": "3.9.13"
12+
}
13+
},
14+
"nbformat": 4,
15+
"nbformat_minor": 2
16+
}

scratch.md

Whitespace-only changes.

0 commit comments

Comments
 (0)