From 6ba874746c8b35cb41e00b8d76119679962113bc Mon Sep 17 00:00:00 2001
From: Jakub Dylag <jjd1c23@soton.ac.uk>
Date: Fri, 7 Feb 2025 00:14:23 +0000
Subject: [PATCH] Add Config Files

---
 MANIFEST.in    |  1 +
 pyproject.toml | 15 +++++++++++++++
 2 files changed, 16 insertions(+)
 create mode 100644 MANIFEST.in
 create mode 100644 pyproject.toml

diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..7152b80
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include README.md LICENSE
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..060d7aa
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,15 @@
+[build-system]
+requires = ["setuptools", "wheel"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "medcoder"
+version = "0.1.0"
+description = "This tool automates the verification, translation and organisation of medical coding lists defining cohort phenotypes for inclusion criteria."
+readme = "README.md"
+authors = [{ name = "Jakub J. Dylag", email = "J.J.Dylag@soton.ac.uk" }]
+license = { file = "LICENSE" }
+dependencies = [
+    "pandas",
+    "numpy"
+]
\ No newline at end of file
-- 
GitLab