-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
45 lines (38 loc) · 976 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
43
44
45
[tool.poetry]
name = "dnaapler"
version = "1.0.1" # change VERSION too
description = "Reorients assembled microbial sequences"
authors = ["George Bouras <george.bouras@adelaide.edu.au>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gbouras13/dnaapler"
repository = "https://github.com/gbouras13/dnaapler"
keywords = ["microbial", "bioinformatics"]
include = [
"HISTORY.md"
]
[tool.poetry.scripts]
dnaapler = 'dnaapler:main'
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
click = ">=8.0.0"
loguru = ">=0.5.3"
pyyaml = ">=6.0"
pandas = ">=1.4.2"
biopython = ">=1.76"
pyrodigal = ">=3.0.0"
[tool.poetry.dev-dependencies]
black = ">=22.3.0"
isort = ">=5.10.1"
pytest = ">=6.2.5"
pytest-cov = ">=3.0.0"
flake8 = ">=3.0.1"
[[tool.poetry.source]]
name = "pypi-test"
url = "https://test.pypi.org/simple/"
priority = "primary"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"