-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
102 lines (89 loc) · 2.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
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
102
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "xlavir"
dynamic = ["version"]
description = "Excel report from viral sequencing analysis output"
authors = [
{ name = "Peter Kruczkiewicz", email = "[email protected]" }
]
keywords = [
"bioinformatics",
"nextflow",
"virus sequencing",
"excel report",
]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Unix Shell',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities',
"Operating System :: POSIX :: Linux",
]
dependencies = [
'typer',
'rich',
'pandas',
'numpy>=1.20.0',
'xlsxwriter',
'pydantic',
'beautifulsoup4',
'biopython',
'openpyxl',
'imageio',
'odfpy',
'pysam',
]
[project.scripts]
xlavir = "xlavir.cli:app"
[project.optional-dependencies]
dev = [
"twine",
"wheel",
"ruff",
"mypy"
]
test = [
"pytest>=3",
"pytest-runner",
]
[tool.hatch.build.targets.wheel]
only-include = [
"xlavir",
]
[tool.hatch.version]
path = "xlavir/__about__.py"
[tool.pytest.ini_options]
minversion = "6.0"
filterwarnings = [
"ignore:.*PytestConfigWarning.*Unknown config option.*",
"ignore::UserWarning",
]
[tool.ruff]
line-length = 120
[tool.mypy]
files = ["xlavir", "tests"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"openpyxl",
"pandas",
]
[project.urls]
"Homepage" = "https://github.com/CFIA-NCFAD/xlavir"
"Repository" = "https://github.com/CFIA-NCFAD/xlavir.git"
"Bug Tracker" = "https://github.com/CFIA-NCFAD/xlavir/issues"