forked from baudrly/hicstuff
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (90 loc) · 2.58 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (90 loc) · 2.58 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hicstuff"
version = "3.2.5"
description = "General purpose stuff to generate and handle Hi-C data in its simplest form."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Jacques Serizay", email = "jacques.serizay@pasteur.fr" },
{ name = "Cyril Matthey-Doret", email = "cyril.matthey-doret@pasteur.fr" },
{ name = "Lyam Baudry", email = "lyam.baudry@pasteur.fr" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dependencies = [
"numpy",
"scipy",
"pandas>=1.5.0",
"matplotlib>=3.4.0",
"rich-click>=1.7",
"biopython",
"requests",
"scikit-learn",
"pysam",
"pyfastx",
"cooler",
"pairtools",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"pre-commit>=3.0",
"sphinx",
"sphinx-rtd-theme",
"ipython>=8.12.3",
]
[project.urls]
Homepage = "https://github.com/koszullab/hicstuff"
Documentation = "https://hicstuff.readthedocs.io/en/latest"
Repository = "https://github.com/koszullab/hicstuff"
[project.scripts]
hicstuff = "hicstuff.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
hicstuff = ["*"]
[tool.ruff]
line-length = 100
target-version = "py38"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = [
"E501", # line-length handled by formatter
"B008", # function calls in default args
"UP007", # X | Y union syntax (py3.10+)
"UP006", # use `type` instead of `Type` (py3.9+)
]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.run]
source = ["hicstuff"]
omit = ["*/tests/*"]
[tool.coverage.report]
show_missing = true
fail_under = 60