From 583ec058e783f5ba654c3745c955c0aa46689fd8 Mon Sep 17 00:00:00 2001 From: "samira.vandenbogaard" Date: Tue, 23 Jul 2024 11:41:02 +0200 Subject: [PATCH] changed software build protocol for multiple folders --- src/__init__.py | 1 + src/pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index e69de29..f3435d1 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -0,0 +1 @@ +from PAModelpy import * \ No newline at end of file diff --git a/src/pyproject.toml b/src/pyproject.toml index 60269c9..b729ff3 100644 --- a/src/pyproject.toml +++ b/src/pyproject.toml @@ -4,9 +4,12 @@ requires = [ ] build-backend = "setuptools.build_meta" +[tool.setuptools.packages] +find = {} # Scan the project directory with the default parameters + [project] name = 'PAModelpy' -version = '0.0.3.10' +version = '0.0.3.11' authors = [{name='Samira van den Bogaard', email = 'samira.vandenbogaard@rwth-aachen.de'}] description = 'Python framework for building and analysing protein allocation models' readme = 'README.md'