-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.08 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "loopsim"
version = "0.6.1"
description = "Loopsim: Enrichment Analysis of Chromosome Conformation Capture with Fast Empirical Distribution Simulation"
authors = ["Gideon Shaked <[email protected]>"]
maintainers = ["Gideon Shaked <[email protected]>"]
repository = "https://github.com/CutaneousBioinf/loopsim"
classifiers = ["Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English"]
license = "MIT"
packages = [{include = "loopsim"}]
[tool.poetry.dependencies]
python = ">=3.8"
click = "~8.1.3"
detect-delimiter = "~0.1.1"
numpy = "~1.24.4"
pandas = "~2.0.2"
scipy = "~1.9.3"
seaborn = "~0.12.2"
[tool.poetry.scripts]
loopsim = "loopsim.cli:cli"
[tool.poetry.dev-dependencies]
pre-commit = "*"
[tool.isort]
profile = "black"
[tool.black]
line-length = 130
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''