-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
42 lines (37 loc) · 955 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
41
42
[tool.poetry]
name = "fastq-dl"
version = "3.0.0"
description = "Download FASTQ files from SRA or ENA repositories."
authors = [
"Robert A. Petit III <[email protected]>",
"Michael B. Hall <[email protected]>",
"Gerry Tonkin-Hill",
"Jie Zhu",
"Timothy D. Read"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/rpetit3/fastq-dl"
repository = "https://github.com/rpetit3/fastq-dl"
keywords = ["bioinformatics", "fastq", "download", "SRA", "ENA"]
[tool.poetry.scripts]
fastq-dl = "fastq_dl.cli.download:main"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
pysradb = "^1.4"
rich-click = "^1.6.1"
executor = "^23.2"
rich = "^13.3.1"
markdown-it-py = "2.2.0"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.0"
flake8 = "^5.0"
pytest = "^8.3.3"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"