forked from cytomining/copairs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (74 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (74 loc) · 1.66 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
[project]
name = "copairs"
version = "0.5.5.dev0"
description = "Find pairs and compute metrics between them"
readme = "README.md"
requires-python = ">=3.9,<3.13"
license = {file = "LICENSE.txt"}
keywords = ["pairwise", "replication"]
authors = [
{ name = "John Arevalo", email = "johnarevalo@gmail.com" },
{ name = "Alexandr Kalinin", email = "akalinin@broadinstitute.org" },
{ name = "Alan F. Munoz", email = "amunozgo@broadinstitute.org" }
]
dependencies = [
"pandas",
"tqdm",
"statsmodels",
"duckdb>=1.4.0",
]
[project.optional-dependencies]
dev = [
"jupyter>=1.1.1",
"pytest>=8.3.4",
"ruff",
"scikit-learn>=1.3.2",
]
test = [
"pytest>=8.3.4",
"scikit-learn>=1.3.2",
]
plot = ["plotly"]
demo = ["notebook", "matplotlib"]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]>=0.29.1",
"mkdocs-section-index",
"mkdocs-jupyter"
]
[project.urls]
"Homepage" = "https://github.com/cytomining/copairs"
"Bug Reports" = "https://github.com/cytomining/copairs/issues"
"Source" = "https://github.com/cytomining/copairs/"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff.lint]
select = ["D", "I"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.isort]
length-sort = true
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"pytest>=8.3.4",
"ruff",
"scikit-learn>=1.3.2",
]
test = [
"pytest>=8.3.4",
"scikit-learn>=1.3.2",
]
plot = ["plotly"]
demo = ["notebook", "matplotlib"]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]>=0.29.1",
"mkdocs-section-index",
"mkdocs-jupyter"
]