-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (50 loc) · 1.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
[project]
name = "chart-review"
requires-python = ">= 3.9"
dependencies = [
"ctakesclient",
"pyyaml >= 6",
"rich",
]
description = "Medical Record Chart Review Calculator"
readme = "README.md"
license = { text="Apache License 2.0" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version"]
[project.urls]
Home = "https://smarthealthit.org/cumulus/"
Documentation = "https://docs.smarthealthit.org/cumulus/chart-review/"
Source = "https://github.com/smart-on-fhir/chart-review"
[project.scripts]
chart-review = "chart_review.cli:main_cli"
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[tool.bandit]
exclude_dirs = ["tests"]
[tool.black]
line-length = 100
[project.optional-dependencies]
tests = [
"ddt",
"pytest",
"pytest-cov",
]
dev = [
"bandit[toml]",
"black >= 24, < 25",
"pycodestyle",
"pylint",
]
[tool.flit.sdist]
include = [
"docs/",
"tests/",
"LICENSE",
"*.md",
]