-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (66 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (66 loc) · 1.75 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "metasheet-guard"
version = "0.1.0"
description = "Experimental-design-aware quality control for sequencing analysis sample sheets."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "MetaSheet-Guard contributors" }
]
keywords = [
"bioinformatics",
"metadata",
"sample sheet",
"sequencing",
"quality control"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"jinja2>=3.1",
"pyyaml>=6.0",
"rich>=13.0",
"typer>=0.12"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6.0",
"pre-commit>=3.5",
"mkdocs-material>=9.5"
]
[project.scripts]
metasheet-guard = "metasheet_guard.cli:app"
[project.urls]
Homepage = "https://qchiujunhao.github.io/metasheet-guard/"
Documentation = "https://qchiujunhao.github.io/metasheet-guard/"
Repository = "https://github.com/qchiujunhao/metasheet-guard"
Issues = "https://github.com/qchiujunhao/metasheet-guard/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
metasheet_guard = ["schemas/*.yaml", "report/templates/*.j2"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"