-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
79 lines (67 loc) · 1.56 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
[build-system]
requires = ["flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "aliquot-maf-tools"
description = "Tools for creating and filtering aliquot-level MAFs"
authors = [
{name = "Charles Czysz", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only"
]
dynamic = ["version"]
dependencies = [
"click",
"bioinf-maflib>=2.3.0",
"pysam",
"pandas",
"pyarrow>=4.0.*",
]
[project.urls]
homepage = "https://github.com/NCI-GDC/aliquot-maf-tools"
[project.scripts]
"aliquotmaf" = "aliquotmaf.__main__:main"
[tool.setuptools_scm]
write_to = "aliquotmaf/_version.py"
local_scheme = "dirty-tag"
version_scheme = "python-simplified-semver"
fallback_version = "0"
[tool.coverage.run]
source = ["aliquotmaf"]
branch = true
parallel = true
[tool.flit.module]
name = "aliquotmaf"
[tool.flit.sdist]
include = ["aliquotmaf/_version.py"]
exclude = [
".*",
"dev-requirements.*",
"Dockerfile",
"Jenkinsfile",
"*travis.yml",
"tox.ini",
]
[tool.black]
line-length = 88
skip-string-normalization = true
target-version = ['py38']
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses=true
line_length = 88
[tool.mypy]
python_version = 3.8
disallow_untyped_defs = true
warn_return_any = true
warn_unused_configs = true
[tool.coverage.report]
show_missing = true