-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved package structure: utils and flux_analysis are now available…
… as well
- Loading branch information
1 parent
0d4c597
commit 9ad1872
Showing
9 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
from PAModelpy import * | ||
from PAModelpy.src.PAModelpy.flux_analysis import * | ||
from PAModelpy.src.PAModelpy.utils import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,11 @@ requires = [ | |
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.packages] | ||
find = {} # Scan the project directory with the default parameters | ||
find = { where = ["src"] } # Scan the project directory with the default parameters | ||
|
||
[project] | ||
name = 'PAModelpy' | ||
version = '0.0.4.1' | ||
version = '0.0.4.2' | ||
authors = [{name='Samira van den Bogaard', email = '[email protected]'}] | ||
description = 'Python framework for building and analysing protein allocation models' | ||
readme = 'README.md' | ||
|