From 0895fb739fa15c262a2a3a58fafa27e4a2ea1d70 Mon Sep 17 00:00:00 2001
From: Tue Herlau <tuhe@dtu.dk>
Date: Thu, 9 Feb 2023 17:30:18 +0100
Subject: [PATCH] Initial commit

---
 .gitignore            |  3 +++
 .vscode/settings.json | 10 ++++++++++
 requirements.txt      |  5 +++++
 setup.py              | 10 ++++++++++
 4 files changed, 28 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 .vscode/settings.json
 create mode 100644 requirements.txt
 create mode 100644 setup.py

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..adb1f85
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+__pycache__
+*.token
+irlc.egg-info
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..0cc19ee
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,10 @@
+{
+    "python.testing.unittestArgs": [
+        "-v",
+        "-s",
+        "./irlc",
+        "-p", "*tests.py"
+    ],
+    "python.testing.pytestEnabled": false,
+    "python.testing.unittestEnabled": true
+}
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..a0d16b7
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,5 @@
+PyQt5<=5.15.7 # 5.15.8 has a problem with matplotlib.
+unitgrade
+matplotlib
+seaborn
+numpy 
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..7e0c0b3
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,10 @@
+from setuptools import find_packages, setup
+
+setup(
+    name="irlc",
+    packages=find_packages(),
+    version="2023.0",
+    description="Mat 1: Projects and stuff",
+    author="Tue Herlau",
+    license="lol",
+)
-- 
GitLab