-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (38 loc) · 1.19 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", "wheel", "setuptools_scm[toml]>=6.2"]
[project]
name = "tbpcxr"
authors = [
{ name="Bradley Lowekamp", email="[email protected]" },
]
description = "Chest X-Ray outlier detector."
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "version"]
[project.urls]
homepage = "https://www.niaid.nih.gov/research/bioinformatics-computational-biosciences-branch"
source = "https://github.com/niaid/tbp-cxr-outlier"
documentation = "https://niaid.github.io/tbp-cxr-outlier"
[project.optional-dependencies]
dev = ["pytest"]
# Hosted on artifactory.niaid.nih.gov in bcbb-pypi
sitkcore=["rap_sitkcore"]
[tool.setuptools]
packages = ["tbpcxr", "tbpcxr.data"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 120
exclude = '(docs/conf\.py)|venv*'
[tool.setuptools_scm]
write_to = "tbpcxr/_version.py"
local_scheme = "dirty-tag"
[tool.flake8]
ignore = ['E203']
max-line-length = 120
exclude = [".git","__pycache__","docs/conf.py"]