-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (78 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "simms"
version = "0.0.1"
description = "Faster Similarity for Mass Spec on GPU"
authors = ["Tornike Onoprishvili <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PangeAI/simms"
keywords = [
"similarity measures",
"mass spectrometry",
"fuzzy matching",
"fuzzy search"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
matchms = ">=0.24.0"
numba = "^0.57.1"
torch = "^2.2.0"
pooch = "^1.8.1"
tqdm = "^4.65.0"
joblib = "^1.3.2"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
decorator = "^5.1.1"
isort = "^5.12.0"
pylint = "^2.17.5"
prospector = {extras = ["with-pyroma"], version = "^1.10.2"}
pytest = "^7.4.0"
tbb = "^2021.12.0"
pytest-cov = "^4.1.0"
pytest-benchmark = {extras=["histogram"], version="^4.0.0"}
yapf = "^0.40.1"
testfixtures = "^7.1.0"
twine = "^4.0.2"
black = "^23.7.0"
poetry-bumpversion = "^0.3.1"
[tool.poetry.group.docs.dependencies]
sphinxcontrib-apidoc = "^0.3.0"
sphinx-rtd-theme = "^1.2.2"
sphinx = "<7"
[tool.poetry_bumpversion.file."simms/__version__.py"]
[tool.isort]
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
no_lines_before = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
lines_after_imports = 2
known_first_party = "simms"
profile = "black"
[tool.nbqa.mypy]
addopts = "--ignore-missing-imports"
[tool.nbqa.isort]
addopts = "--profile=black"
[tool.pytest.ini_options]
pythonpath = [
"."
]
testpaths = [
"tests",
"integration-tests",
]
markers = [
"github_ci: marks tests as lightweight-enough to run on a CPU as a github CI",
]
[tool.poetry.scripts]
pangea-simms = "simms.cli:main"