-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 985 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
[tool.poetry]
name = "eskrim"
version = "1.0.9"
description = "ESKRIM: EStimate with K-mers the RIchness in a Microbiome"
authors = [
"Florian Plaza Oñate <florian.plaza-onate@inrae.fr>",
"Emmanuelle Le Chatelier <emmanuelle.le-chatelier@inrae.fr>",
]
license = "GPL-3.0-or-later"
readme = "README.md"
keywords = ["Metagenomics"]
repository = "https://github.com/metagenopolis/ESKRIM"
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
packages = [{ include = "eskrim" }]
[tool.poetry.scripts]
eskrim = "eskrim.eskrim:main"
[tool.poetry.dependencies]
python = ">=3.12"
pyjellyfish = ">=1.3.1"
[tool.poetry.group.mypy.dependencies]
mypy = "^1.10"
[tool.poetry.group.pylint.dependencies]
pylint = "^3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"