Skip to content

Commit

Permalink
Prepare the project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryashutov committed Feb 24, 2025
1 parent a600910 commit cab982b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
1 change: 1 addition & 0 deletions python/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
./poetry.lock
14 changes: 5 additions & 9 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
[project]
name = "fhirpath-mapping-language"
description = "The FHIRPath mapping language is a data DSL designed to convert data from QuestionnaireResponse (and not only) to any FHIR Resource."
authors = [
{name = "Beda Software",email = "ilya@beda.software"}
]
authors = [{ name = "Beda Software", email = "ilya@beda.software" }]
maintainers = [
{ name = "Vadim Laletin", email = "vadim@beda.software" },
{ name = "Ilya Beda", email = "ilya@beda.software" }
{ name = "Ilya Beda", email = "ilya@beda.software" },
]
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.9"
keywords = ["fhir", "fhirpath"]
dynamic = ["version", "classifiers"]
dependencies = [
]
dependencies = []

[project.urls]
homepage = "https://github.com/beda-software/FHIRPathMappingLanguage/tree/main/python/"
Expand All @@ -24,7 +20,7 @@ documentation = "https://github.com/beda-software/FHIRPathMappingLanguage/tree/m

[tool.poetry]
version = "0.1.0"
packages = [{include = "python", from = "src"}]
packages = [{ include = "fhirpath-mapping-language", from = "src" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand All @@ -38,8 +34,8 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",

]
readme = ["README.md", "../README.md"]

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand Down
Empty file.

0 comments on commit cab982b

Please sign in to comment.