-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (58 loc) · 1.58 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "meteor"
version = "2.0.17"
description = "Meteor - A plateform for quantitative metagenomic profiling of complex ecosystems"
authors = ["Amine Ghozlane <[email protected]>", "Florence Thirion <[email protected]>", "Florian Plaza-Oñate <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
keywords = ["Metagenomics"]
repository = "https://github.com/metagenopolis/meteor"
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
packages = [
{ include = "meteor" },
]
[tool.poetry.scripts]
meteor = "meteor.meteor:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pandas = "^2.1.2"
pysam = "^0.22.0"
packaging = "^23.2"
pyarrow = "^15.0.0"
ete3 = "^3.1.3"
biom-format = "^2.1.15"
cogent3 = "^2024.2.5a1"
bgzip = "^0.5.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
pytest-datadir = "^1.5.0"
pytest-cov = "^4.1.0"
pysam = "^0.22.0"
pandas = "^2.1.2"
pyarrow = "^15.0.0"
biom-format = "^2.1.15"
cogent3 = "^2024.5.7a1"
ete3 = "^3.1.3"
bgzip = "^0.5.0"
[tool.poetry.group.mypy.dependencies]
mypy = "^1.6.1"
pytest = "^7.4.3"
pysam = "^0.22.0"
pandas = "^2.1.2"
pandas-stubs = "^2.1.1.230928"
types-setuptools = "^68.2.0.0"
[tool.poetry.group.pylint.dependencies]
pylint = "^3.0.2"
anybadge = "^1.14.0"
black = "^23.10.1"
[flake8]
max-line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"