-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 2.14 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
71
72
[tool.poetry]
name = "blast2galaxy"
version = "1.0.0"
keywords = ["bioinformatics", "blast", "sequence alignment"]
description = "A Python package providing a CLI and API to perform BLAST+ and DIAMOND queries against public or private Galaxy servers"
authors = ["Patrick König <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [{include = "blast2galaxy", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
bioblend = "^1.2.0"
rich = "^13.6.0"
tomli = { version = "^2.0.1", python = "<3.11" }
click = "^8.1.7"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-click = "^0.8.1"
mkdocstrings = "^0.25.1"
mkdocstrings-python = "^1.10.5"
mkdocs-material = "^9.5.31"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
nox = "^2024.4.15"
nox-poetry = "^1.0.3"
ruff = "^0.6.3"
[tool.poetry.scripts]
blast2galaxy = "blast2galaxy.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "blast2galaxy"
description = "A Python package providing a CLI and API to perform BLAST+ and DIAMOND queries against public or private Galaxy servers"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Patrick König"},
]
maintainers = [
{name = "Patrick König", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Documentation = "https://blast2galaxy.readthedocs.io/"
Source = "https://github.com/IPK-BIT/blast2galaxy/"
Homepage = "https://github.com/IPK-BIT/blast2galaxy/"