-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.19 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "kmerpapa"
version = "0.2.4"
description = "Tool to calculate a k-mer pattern partition from position specific k-mer counts."
authors = ["Søren Besenbacher <besenbacher@clin.au.dk>"]
license = "MIT License"
readme = "README.md"
repository = "https://github.com/besenbacherLab/kmerpapa"
homepage = "https://github.com/besenbacherLab/kmerpapa"
keywords = []
packages = [ { include = "kmerpapa", from = "src" } ]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
scikit-optimize = "^0.9.0"
numba = "^0.56.2"
numpy = "^1.23.3"
scipy = "^1.9.1"
[tool.poetry.dev-dependencies]
# formatting, quality, tests
black = "^20.8b1"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
pytest-randomly = "^3.5.0"
pytest-sugar = "^0.9.4"
pytest-xdist = "^2.2.0"
# tasks
pip = "^21.3.1"
duty = "^0.6.0"
git-changelog = "^0.4.2"
httpx = "^0.16.1"
jinja2-cli = "^0.7.0"
toml = "^0.10.2"
# docs
mkdocs = "^1.1.2"
mkdocs-coverage = "^0.2.1"
mkdocs-macros-plugin = "^0.5.0"
mkdocs-material = "^6.2.7"
mkdocstrings = "^0.15.0"
[tool.poetry.scripts]
kmerpapa = "kmerpapa.cli:main"
[tool.black]
line-length = 120
exclude = "tests/fixtures"