-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (62 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
74 lines (62 loc) · 1.8 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "plexus"
dynamic = ["version"]
description = "Package for designing multiplex PCR panels"
readme = "README.md"
license = "GPL-2.0-or-later"
requires-python = ">=3.10,<3.14"
authors = [{ name = "Stefan Filges", email = "stefan.filges@pm.me" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"Jinja2",
"loguru",
"pandas",
"primer3-py>=2.3.0",
"pydantic",
"pysam>=0.23.3",
"rich",
"typer",
]
[project.scripts]
plexus = "plexus.cli:app"
[project.urls]
Homepage = "https://github.com/sfilges/plexus"
Repository = "https://github.com/sfilges/plexus"
[project.optional-dependencies]
dev = ["mypy", "pre-commit", "pytest", "pytest-cov", "ruff"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "src/plexus/version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/plexus"]
[tool.ruff]
line-length = 88
target-version = "py310"
exclude = ["*.ipynb", "data"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["plexus"]
[tool.mypy]
python_version = "3.10"
strict = false
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--cov=plexus --cov-report=term-missing"
testpaths = ["tests"]
markers = ["integration: end-to-end integration tests (may be slow)"]