-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (34 loc) · 988 Bytes
/
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
[tool.poetry]
name = "strprofiler"
version = "0.4.2"
description = "A python package, CLI tool, and Shiny application to compare short tandem repeat (STR) profiles."
authors = ["Jared Andrews <jared.andrews07@gmail.com>",
"Mike Lloyd <mike.lloyd@jax.org>"]
license = "MIT"
repository = "https://github.com/j-andrews7/strprofiler"
documentation = "https://strprofiler.readthedocs.io/en/latest/"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pandas = "^2.2"
rich-click = "^1.5.2"
numpy = "^1.26.3"
openpyxl = "^3.0.10"
shiny = "^0.9.0"
shinyswatch = "^0.4.2"
Jinja2 = "^3.1.3"
faicons = "^0.2.2"
requests = "^2.31.0"
flatten-json = "^0.1.14"
[tool.poetry.dev-dependencies]
[tool.poetry.urls]
"Paper" = "https://doi.org/10.1093/bioinformatics/btae713"
[tool.poetry.scripts]
strprofiler = 'strprofiler.cli:cli'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"."
]