-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (32 loc) · 886 Bytes
/
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
[tool.poetry]
name = "python-fhirpy"
version = "1.0.0"
description = "Smart on FHIR bulk fhir API client wtih backend authorization"
authors = ["Matt Landowski <[email protected]>"]
readme = "README.md"
packages = [ { include = "fhirpy", from = "src" }, ]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
jwcrypto = "^1.5.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
isort = "^5.12.0"
mypy = "^1.5.1"
pre-commit = "^3.4.0"
types-requests = "^2.31.0.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"
pytest-mock = "*"
requests-mock = "^1.11.0"
flake8 = "^6.1.0"
flake8-black = "^0.3.6"
[tool.poetry.group.datascience.dependencies]
polars = "^0.19.5"
pandas = "^2.1.1"
pyspark = "^3.5.0"
pyarrow = "^13.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]