diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index a33ef97..5d412ff 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -27,7 +27,7 @@ jobs: - name: Install package dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + pip install -r build_tools/requirements.txt - name: Install run: pip install -v -e . - name: Run tests diff --git a/build_tools/requirements.txt b/build_tools/requirements.txt new file mode 100644 index 0000000..b96bcd1 --- /dev/null +++ b/build_tools/requirements.txt @@ -0,0 +1,3 @@ +-r ../requirements.txt +pytest +pytest-cov \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4a6ddeb..39bc37c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = [ description = "ABL-Package" readme = "README.md" requires-python = ">=3.6.0" -license = {file = "LICENSE"} +license = {text = "MIT LICENSE"} classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research",