-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
41 lines (36 loc) · 1.2 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
[build-system]
requires = ["setuptools>=61.0", "cython >= 0.26.1", "numpy >= 1.9.3"]
build-backend = "setuptools.build_meta"
[project]
name = "ms_entropy"
# version = "0.9.1"
dynamic = ["version"]
authors = [{ name = "Yuanyue Li", email = "[email protected]" }]
description = "This package provides a Python implementation of calculating spectral entropy, entropy similarity, and Flash entropy search for mass spectrometry data."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
license = { file = "LICENSE" }
keywords = [
"mass spectrometry",
"ms entropy",
"entropy",
"spectral entropy",
"entropy similarity",
"flash entropy",
"flash entropy similarity",
"flash entropy search",
]
dependencies = ["numpy >= 1.9.3"]
[project.optional-dependencies]
all = ["lz4 >= 4.3.2", "msgpack >= 1.0.5", "pyteomics >= 4.6"]
gpu = ["cupy >= 12.0.0"]
[project.urls]
"Homepage" = "https://github.com/YuanyueLi/MSEntropy"
"Bug Tracker" = "https://github.com/YuanyueLi/MSEntropy/issues"
[tool.setuptools.dynamic]
version = {attr = "ms_entropy.__version__"}