-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
66 lines (59 loc) · 1.65 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
[project]
name = "stranger"
version = "0.9.3"
description = "Annotate VCF files with STR variants with pathogenicity implications"
authors = [{name="Daniel Nilsson", email="[email protected]"}, {name="Mans Magnuson", email="[email protected]"}]
license = {text = "MIT License"}
readme = "README.md"
include = [
"README.md",
"stranger/**/*",
"tests/**/*"
]
requires-python = ">=3.7"
keywords = ["vcf", "variants", "str"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"click",
"coloredlogs",
"importlib-resources>=5.12.0",
"PyYAML",
]
[project.urls]
Repository = "https://github.com/Clinical-Genomics/stranger"
Changelog = "https://github.com/Clinical-Genomics/stranger/blob/main/CHANGELOG.md"
"Bug Tracker" = "https://github.com/Clinical-Genomics/stranger/issues"
[project.scripts]
stranger = "stranger.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 100
target-version = ['py313']
[tool.ruff]
src = ["stranger", "tests", "scripts"]
line-length = 100
[tool.isort]
profile = "black"
[dependency-groups]
dev = [
"pytest-cov>=4.1.0",
"pytest>=7.4.4",
]
lint = [
"black>=23.3.0",
"isort>=5.11.5",
"ruff>=0.8.0",
]