-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (59 loc) · 1.59 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
[tool.poetry]
name = "hiscanner"
version = "1.6.1"
description = "High-resolution single-cell copy number analysis."
authors = ["Yifan Zhao <yifnzhao@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "hiscanner" }
]
include = [
"hiscanner/resources/*.yaml",
"hiscanner/resources/Snakefile"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["bioinformatics", "single-cell", "cnv", "genomics"]
[tool.poetry.dependencies]
python = ">=3.8"
numpy = ">=1.20.0"
pandas = ">=1.3.0"
scipy = ">=1.9.3"
scikit-learn = ">=1.0.0"
hmmlearn = ">=0.2.7"
pysam = ">=0.16.0"
matplotlib = ">=3.4.0"
seaborn = ">=0.11.0"
pyyaml = ">=5.4.0"
click = ">=8.0.0"
colorlog = ">=6.0.0"
pyfaidx = ">=0.6.0"
tqdm = ">=4.62.0"
joblib = ">=1.0.0"
snakemake = "==7.32.4"
pulp = "==2.7.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.0"
pytest-cov = ">=2.0"
black = ">=22.0"
flake8 = ">=3.9"
mypy = ">=0.910"
isort = ">=5.9"
[tool.poetry.urls]
Homepage = "https://github.com/parklab/hiscanner"
Documentation = "https://github.com/parklab/hiscanner#readme"
Repository = "https://github.com/parklab/hiscanner.git"
Changelog = "https://github.com/parklab/hiscanner/blob/main/CHANGELOG.md"
[tool.poetry.scripts]
hiscanner = "hiscanner.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"