-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.01 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "who-l3-smart-tools"
version = "0.2.0"
description = "Tools for automating extraction of L3 technical resources from L2 packages"
authors = ["I-TECH DIGI"]
license = "MPL-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
pandas = ">=1.0"
xlrd = ">=1.2"
openpyxl = ">=3.0"
fhirpy = ">=1.4"
"fhir.resources" = ">=7.0"
Faker = ">=25.0"
inflect = "^7.3.0"
python-slugify = ">=8.0.4"
stringcase = ">=1.2"
jinja2 = "^3.1.4"
[tool.poetry.group.dev.dependencies]
pytest = ">=6"
flake8 = ">=3.8"
Sphinx = ">=3.2"
pyright = "^1.1.367"
pre-commit = "^3.7.1"
pylint = "^3.2.5"
black = "^24.4.2"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.poetry.scripts]
lint = "scripts.lint:main"
format = "scripts.format:main"
logical_model_gen = "who_l3_smart_tools.cli.logical_model_gen:main"
indicator_testing = "who_l3_smart_tools.cli.indicator_testing:main"
terminology = "who_l3_smart_tools.cli.terminology:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"