forked from dnanexus-archive/IndexTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 772 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 772 Bytes
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
[tool.poetry]
name = "indextools"
version = "0.1.2"
description = "A toolkit for accelerating genomics using index files."
license = "MIT"
authors = ["John Didion <jdidion@dnanexus.com>"]
readme = "README.md"
homepage = "https://github.com/dnanexus/indextools"
repository = "https://github.com/dnanexus/indextools.git"
classifiers = ["Development Status :: 4 - Beta"]
include = [
"AUTHORS.md",
"CHANGES.md",
]
[tool.poetry.dependencies]
python = "^3.6"
autoclick = "^0.5.1"
ngsindex = "^0.1.7"
pysam = "^0.15"
xphyle = "^4.0.8"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
[tool.poetry.extras]
jinja2 = ["jinja2"]
[tool.poetry.scripts]
indextools = "indextools.console:indextools"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"