Skip to content

Commit

Permalink
update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKonar committed Oct 29, 2024
1 parent bd85433 commit 9f7899e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]"}]
Expand All @@ -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*"]

0 comments on commit 9f7899e

Please sign in to comment.