From c998b72415c7ed0eb426ab1efce5ceecb8cb169e Mon Sep 17 00:00:00 2001 From: MaxvandenBoom Date: Fri, 7 Apr 2023 17:52:38 -0500 Subject: [PATCH] Moved dependencies to pyproject, requirements.txt is generated on build --- pyproject.toml | 6 ++++++ requirements.txt | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) delete mode 100755 requirements.txt diff --git a/pyproject.toml b/pyproject.toml index 8ee0cfc..66f9cd2 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,6 +11,12 @@ description = "A package to read and pre-process Intracranial Electroencephalogr readme = "README.md" license = { text="GPLv3" } requires-python = ">=3.8" +dependencies = [ + "numpy >= 1.22.3", + "pandas >= 1.4.2", + "pymef >= 1.3.4", + "psutil >= 5.9.4", +] keywords = ["intracranial", "electroencephalography", "ieeg", "BIDS"] authors = [{ name="Max van den Boom", email="m.a.vandenboom84@gmail.com" }] classifiers = [ diff --git a/requirements.txt b/requirements.txt deleted file mode 100755 index 3991539..0000000 --- a/requirements.txt +++ /dev/null @@ -1,5 +0,0 @@ -numpy>=1.22.3 -pandas>=1.4.2 -pymef>=1.3.4 -psutil>=5.9.4 -