-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
47 lines (44 loc) · 967 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
40
41
42
43
44
45
46
47
[project]
name = "fhirpath"
authors = [
"Md Nazrul Islam <[email protected]>"
]
keywords = ["fhirpath", "HL7", "FHIR", "healthcare", "IHE"]
[build-system]
requires = [
"setuptools >= 45.2.0",
"setuptools_scm[toml]>=3.4.3",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
target_version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.env
| _build
| buck-out
| build
| dist
)/
| setup.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.setuptools_scm]
write_to = "src/fhirpath/version.py"
write_to_template = '''
# _*_ coding: utf-8 _*_
# file generated by setuptools_scm
# don't change, don't track in version control
__version__ = {version!r}
'''