forked from oclb/graphld
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (75 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
88 lines (75 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
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "graphld"
version = "1.1.0"
description = "Graph-based linkage disequilibrium matrix estimation"
readme = "README.md"
requires-python = ">=3.11.0"
authors = [
{ name = "Luke O'Connor" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy>=2.2",
"polars>=1.31.0",
"scipy>=1.13",
"scikit-sparse>=0.4.12",
"h5py>=3.13.0",
"filelock>=3.18.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.3.1",
"ruff>=0.1.9",
"hypothesis>=6.82.6",
"psutil>=6.1.1",
"tabulate>=0.9.0",
]
[project.urls]
Repository = "https://github.com/oclb/graphld"
[project.scripts]
graphld = "graphld.cli:main"
estest = "graphld.score_test:main"
[tool.setuptools]
packages = ["graphld"]
[tool.pytest.ini_options]
minversion = "7.4.0"
addopts = "-ra -q --cov=graphld --cov-report=term-missing"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.coverage.run]
source = ["graphld"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"if TYPE_CHECKING:"
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
]
[tool.uv]
package = true