This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (53 loc) · 1.45 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
55
56
57
58
[tool.poetry]
name = "kmermaid"
version = "1.0.0"
description = "K-mer management tools"
authors = ["Gabriele Girelli <gigi.ga90@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/ggirelli/kmermaid"
repository = "https://github.com/ggirelli/kmermaid"
keywords = ["biology", "DNA", "RNA", "kmer", "oligomer", "uniq", "unique", "count", "sequence"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
include = [
"CHANGELOG.md",
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.8"
biopython = "^1.78"
click = "^8.0.3"
h5py = "^3.2.1"
joblib = "^1.0.1"
numpy = "^1.20.1"
oligo_melting = {git = "https://github.com/ggirelli/oligo-melting", rev = "301b2c8"}
rich = ">=9.10,<11.0"
tqdm = "^4.58.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
flake8 = "^4.0.1"
mypy = "^0.910"
black = "^21.9b0"
safety = "^1.10.3"
bandit = "^1.7.0"
isort = "^5.9.3"
darglint = "^1.8.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
"kmer" = "kmermaid.scripts.kmer:main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]