-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
91 lines (87 loc) · 3.14 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[tool.poetry]
name = "fhirstarter"
version = "2.4.3"
description = "An ASGI FHIR API framework built on top of FastAPI and FHIR Resources"
authors = ["Christopher Sande <[email protected]>"]
maintainers = ["Canvas Medical Engineering <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/canvas-medical/fhirstarter"
repository = "https://github.com/canvas-medical/fhirstarter"
keywords = ["fhir", "api", "server", "resources", "framework", "fastapi", "healthcare", "hl7"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = ">=3.8.0,<3.13.0"
asyncache = "^0.3.1"
cachetools = "^5.5.1"
fastapi = ">=0.103.1,<0.116.0"
"fhir.resources" = {version = ">=6.4.0", extras = ["xml"]}
httpx = ">=0.24.1,<0.29.0"
orjson = "^3.10.3"
pydantic = ">=1.10.12,<2.0.0"
python-multipart = ">=0.0.6,<0.0.21"
tomli = { version = ">=2.0.1,<3.0.0", markers = "python_version < '3.11'" }
tzdata = { version = ">=2023.3,<2026.0", markers = "platform_system == 'Windows'" }
[tool.poetry.group.dev.dependencies]
black = ">=23.7,<25.0"
beautifulsoup4 = "^4.12.2"
funcy = "^2.0"
isort = "^5.12.0"
jsonpatch = "^1.33"
mypy = "^1.5.1"
pytest = ">=7.4,<9.0"
requests = "^2.31.0"
types-cachetools = "^5.5.0.20240820"
types-requests = "^2.31.0.2"
uvicorn = [
{ version = ">=0.23.2,<0.30.0", markers = "platform_system != 'Windows'", extras = ["standard"] },
{ version = ">=0.23.2,<0.30.0", markers = "platform_system == 'Windows'" }
]
uvloop = { version = ">=0.19.0,<1.0.0", markers = "python_version >= '3.12' and platform_system != 'Windows'" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
check_untyped_defs = true
color_output = true
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = false
disallow_untyped_defs = true
error_summary = true
follow_imports = "skip"
ignore_missing_imports = true
no_implicit_optional = true
pretty = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = false
warn_unreachable = true
warn_unused_ignores = true
follow_imports_for_stubs = true