-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.48 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
[tool.poetry]
name = "clubcpg"
version = "0.3.0"
description = "CluBCpG is a software package built to analyze whole genome bisulfite sequencing (WGBS) data."
authors = ["Anthony Scott, PhD <anthony@canthonyscott.com>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "clubcpg" },
{ include = "clubcpg_prelim" },
{ include = "clubcpg_bin" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "^1.25.0"
scikit-learn = "^1.3.0"
pysam = "^0.21.0"
scipy = "^1.11.1"
joblib = "^1.3.1"
fastcluster = "^1.2.6"
pebble = "^5.0.3"
tqdm = "^4.65.0"
pandas = "^2.0.3"
[tool.poetry.scripts]
clubcpg-coverage = "clubcpg_bin.clubcpg_coverage:cli"
clubcpg-cluster = "clubcpg_bin.clubcpg_cluster:cli"
clubcpg-impute-cluster = "clubcpg_bin.clubcpg_impute_cluster:cli"
clubcpg-impute-coverage = "clubcpg_bin.clubcpg_impute_coverage:cli"
clubcpg-impute-train = "clubcpg_bin.clubcpg_impute_train:cli"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = ">=1.6,<7"
sphinx-argparse = "^0.4.0"
sphinx-rtd-theme = "^1.2.2"
sphinxcontrib-autoprogram = "^0.1.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"