forked from LKremer/scbs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
executable file
·47 lines (42 loc) · 1.36 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
[tool.poetry]
name = "MethSCAn"
version = "1.1.0"
description = "a command line tool for Single-Cell Analysis of Methylation data"
authors = [
"Lukas PM Kremer <[email protected]>",
"Martina Braun <[email protected]>",
"Leonie Küchenhoff <[email protected]>",
"Svetlana Ovchinnikova <[email protected]>",
"Simon Anders <[email protected]>",
]
maintainers = ["Lukas PM Kremer <[email protected]>"]
readme = "README.md"
repository = "https://github.com/anders-biostat/MethSCAn"
homepage = "https://anders-biostat.github.io/MethSCAn"
keywords = ["biology", "bioinformatics", "single cell", "methylation", "single cell bisulfite sequencing"]
license = "GPL-3.0-or-later"
classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
]
[tool.poetry.dependencies]
python = ">=3.8"
click = ">=7.1.2,<8.1"
numpy = ">=1.20.1,<2"
scipy = ">=1.6.1,<2"
pandas = ">=1.2.3,<2"
statsmodels = ">=0.12.2,<1"
click-help-colors = ">=0.9,<1"
numba = ">=0.53.0,<1"
colorama = ">=0.3.9,<1"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
pre-commit = "^2.17.0"
ruff = "^0.4.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
methscan = "methscan.cli:cli"
[tool.isort]
profile = "black"