-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
101 lines (94 loc) · 2.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
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
92
93
94
95
96
97
98
99
100
101
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "fhirspec"
dist-name = "fhirspec"
author = "Md Nazrul Islam"
author-email = "[email protected]"
home-page = "https://github.com/nazrulworld/fhirspec"
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Healthcare Industry",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
requires = ["setuptools"]
description-file = "README.rst"
requires-python = ">=3.6"
[tool.flit.metadata.urls]
Documentation = "https://nazrul.me/fhirspec/"
[tool.flit.metadata.requires-extra]
test = [
"pytest==6.1.2",
"pytest-cov==2.10.1",
"mypy",
"black",
"isort",
"flake8"
]
dev = [
"autoflake",
"vulture",
"json5"
]
toml = [
"pytoml"
]
all = [
"pytest==6.1.2",
"pytest-cov==2.10.1",
"mypy",
"black",
"isort",
"autoflake",
"flake8",
"vulture",
"pytoml",
"json5"
]
[requires]
python_version = "3.7"
[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.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88