-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from BBMRI-cz/package_refactoring
Package refactoring
- Loading branch information
Showing
23 changed files
with
279 additions
and
90 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "MIABIS_on_FHIR" | ||
version = "1.0.0" | ||
version = "1.1.1dev01" | ||
description = "Library containing classes for easier handling of data according to the MIABIS on FHIR profile" | ||
readme = "README.md" | ||
authors = [{"name" = "Simon Konar", "email" = "[email protected]"}] | ||
|
@@ -16,13 +16,21 @@ classifiers = [ | |
keywords = ["MIABIS", "FHIR", "model" , "profile", "data", "handling"] | ||
dependencies = [ | ||
"simple-icd-10 >= 2.0.0", | ||
"fhirclient >= 4.2.1" | ||
"fhirclient >= 4.2.1", | ||
"requests >= 2.32", | ||
"python-dateutil >= 2.9.0" | ||
|
||
] | ||
requires-python = ">=3.11" | ||
|
||
[project.optional-dependencies] | ||
test=["requests >= 2.32.0"] | ||
test=["pytest >= 8.3.0"] | ||
|
||
[tool.setuptools] | ||
package-dir = { "" = "src" } | ||
|
||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
include = ["MIABIS_on_FHIR*", "blaze_client*"] | ||
exclude =["test*"] |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from .biobank import Biobank | ||
from .collection import Collection | ||
from .collection_organization import CollectionOrganization | ||
from .condition import Condition | ||
from .diagnosis_report import DiagnosisReport | ||
from .gender import Gender | ||
from .incorrect_json_format import IncorrectJsonFormatException | ||
from .network import Network | ||
from .network_organization import NetworkOrganization | ||
from .observation import Observation | ||
from .sample import Sample | ||
from .sample_donor import SampleDonor | ||
from .storage_temperature import StorageTemperature |
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
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
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
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.
2 changes: 1 addition & 1 deletion
2
src/MIABIS_on_FHIR/util/_parsing_util.py → src/MIABIS_on_FHIR/util/parsing_util.py
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.
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from .blaze_client import BlazeClient | ||
from .NonExistentResourceException import NonExistentResourceException |
Oops, something went wrong.