-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.65 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "abstar"
description = "Germline assignment and annotation of AIRR data. Scalable from a single sequence to billions of sequences."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Bryan Briney", email = "briney@scripps.edu" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"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",
]
dynamic = ["version", "dependencies"]
[project.scripts]
abstar = "abstar.scripts.abstar:cli"
[project.urls]
Homepage = "https://github.com/brineylab/abstar"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["abstar*"]
[tool.setuptools.dynamic]
version = { attr = "abstar.version.__version__" }
dependencies = { file = ["requirements.txt"] }
[tool.pytest.ini_options]
testpaths = ["abstar/tests"]
strict_config = true
strict_markers = true
xfail_strict = true
required_plugins = ["pytest-cov>=6,<8"]
markers = [
"integration: exercises a real component or external-tool boundary",
"e2e: exercises abstar.run or the installed abstar command",
"slow: bounded checks excluded from the ordinary pull-request matrix",
]
filterwarnings = [
"error::Warning:abstar.*",
]