-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 887 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
[tool.poetry]
name = "insilicogenome"
version = "0.1.0"
description = "A Python utility to create artificial genomes, this tool is designed to be used in bioinformatics benchmarking programs."
authors = ["Delmotte Jean"]
license = "GNU General Public License v3.0"
readme = "README.md"
documentation = "https://insilicogenome.readthedocs.io/en/latest/"
homepage = "https://github.com/propan2one/insilicogenome"
repository = "https://github.com/propan2one/insilicogenome"
[tool.poetry.dependencies]
python = "^3.9"
biopython = "^1.79"
[tool.poetry.dev-dependencies]
Sphinx = "^4.1.0"
nbsphinx = "^0.8.6"
ipykernel = "^6.0.1"
sphinx-autoapi = "^1.8.1"
sphinx-rtd-theme = "^0.5.2"
sphinxcontrib-napoleon = "^0.7"
pytest = "^6.2.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
insilicogenome = "insilicogenome.cli:main"