-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.17 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
[build-system]
requires = [
"setuptools>=42"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyfhirsdc"
version = "0.1.3"
description = "A tool for FHIR structure data capture"
dependencies = [
"wheel",
"pandas",
"openpyxl",
"fhir.resources>=7.0.2",
"validators",
"odfpy",
"ocldev",
"coloredlogs",
"requests-toolbelt",
"jsonpath-ng",
"textile",
"fhirpathpy",
"semantic-version",
"py-markdown-table"
]
authors = [
{name ="Patrick Delcroix", email = "[email protected]"},
{name ="Marco Peirera", email = "[email protected]"},
{name ="Rukshan Ranatunge", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL v3",
"Operating System :: OS Independent"
]
keywords = ["FHIR", "SMART", "SDC", "CPG", "CQL"]
readme = "README.md"
requires-python = ">=3.6"
[project.urls]
"Bug Tracker" = "https://github.com/SwissTPH/pyfhirsdc/issues"
changelog= "https://github.com/SwissTPH/pyfhirsdc/docs/changeLog.md"
repository = "https://github.com/SwissTPH/pyfhirsdc"
[tool.setuptools.packages]
find = {where = ["pyfhirsdc"]}