-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
35 lines (33 loc) · 933 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
[project]
name = "plm-Blast"
version = "0.0.2"
authors = [
{ name="Stanisław Dunin-Horkawicz", email="s.dunin-horkawicz@cent.uw.edu.pl" },
{ name="Kamil Kamiński", email="k.kaminski16@uw.edu.pl"}
]
description = "plm-Blast package a tool for aligning sequence based language model potein representation"
readme = "README.md"
requires-python = ">=3.9"
license = "LICENSE.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/labstructbioinf/pLM-BLAST"
"Bug Tracker" = "https://github.com/labstructbioinf/pLM-BLAST/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--maxfail=10",
]
python_files = "test_*"
pythonpath = ["."]
testpaths = [
"tests",
]
markers = [
"embedding: marks tests as slow (deselect with '-m \"not embedding\"')",
"serial",
]