forked from luisfabib/fhircraft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (83 loc) · 2.51 KB
/
pyproject.toml
File metadata and controls
89 lines (83 loc) · 2.51 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = 'fhircraft'
version='0.6.4'
description = "Fhircraft transforms FHIR (Fast Healthcare Interoperability Resources) specifications into type-safe Python models using Pydantic. Build healthcare applications with automatic validation, intelligent code completion, and seamless integration with Python's ecosystem."
authors = [
{name = 'Luis Fábregas-Ibáñez', email = 'luisfabib@gmail.com'},
]
keywords = ["Pydantic", "FHIR", "healthcare", "modelling", "validation"]
license = {'file' = 'LICENSE'}
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Environment :: Console',
'Environment :: MacOS X',
'Framework :: Pydantic',
'Topic :: Software Development :: Libraries :: Python Modules',
]
requires-python = '>=3.10'
readme = "README.md"
dependencies = [
'requests',
'pydantic>=2.7',
'ply>=3.11',
'pyyaml>=6.0.1',
'python-dotenv>=1.0',
'jsonschema>4',
'jsonpath-ng>1',
'jinja2>=3.1',
'Pint>=0.24',
'packaging>=25'
]
[project.optional-dependencies]
cli = ["typer==0.12.3"]
dev = [
"pytest>=8.2",
"pytest-mock==3.14.0",
"parameterized==0.9.0",
"coverage==7.5.1",
]
docs = [
"mkdocs-material==9.5.27",
"mkdocstrings[python]==0.26.1",
"mkdocs-gen-files==0.5.0",
"mkdocs-literate-nav==0.6.1",
"griffe-fieldz==0.4.0",
]
[tool.hatch.build.targets.sdist]
# limit which files are included in the sdist (.tar.gz) asset,
# see https://github.com/pydantic/pydantic/pull/4542
include = [
'/README.md',
'/HISTORY.md',
'/fhircraft',
'/test',
]
[project.urls]
Homepage = "https://github.com/luisfabib/fhircraft"
Issues = "https://github.com/luisfabib/fhircraft/issues"
Documentation = "https://luisfabib.github.io/fhircraft/"
[tool.pytest.ini_options]
python_files = [
"**/test/test_*.py",
]
markers = [
"integration",
]
testpaths = ['test']