-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.56 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
59
60
61
62
63
64
65
66
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "ngsderive"
version = "4.0.0"
description = "Forensic analysis tool useful in backwards computing information from next-generation sequencing data."
license = "MIT"
authors = [
"Clay McLeod <[email protected]>",
"Andrew Frantz <[email protected]"
]
readme = "README.md"
repository = "https://github.com/claymcleod/ngsderive"
keywords = [
"bioinformatics",
"genomics",
"sam",
"bam",
"fastq"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
packages = [
{ include = "ngsderive" }
]
[tool.poetry.dependencies]
python = "^3.8"
colorlog = "^6.6.0"
rstr = "^3.0.0"
gtfparse = "^1.2.1"
sortedcontainers = "^2.4.0"
pytabix = "^0.1"
pysam = "^0.21"
pygtrie = "^2.5.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
twine = "^3.7"
mkdocs = "^1.2.3"
mkdocs-bootswatch = "^1.1"
python-semantic-release = "^7.23.0"
pycodestyle = "^2.8.0"
black = {version = "^21.12b0", allow-prereleases = true}
mypy = "^0.920"
pydocstyle = "^6.1.1"
[tool.poetry.scripts]
ngsderive = 'ngsderive.__main__:run'
[tool.semantic_release]
version_variable = "pyproject.toml:version"
version_source = "commit"
commit_subject = "chore: bumping version to v{version}"
commit_message = ""
commit_author = "St. Jude Cloud <[email protected]>"
build_command = "poetry build"
upload_to_release = "false"
# check_build_status = true