diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000000000000000000000000000000000000..7152b80ad203460a81caeda0a3a7a779956f9450 --- /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 0000000000000000000000000000000000000000..060d7aab42f4228da5213808f170d13607273b2d --- /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