-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 2.27 KB
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
[build-system]
requires = ["setuptools", "wheel", "numpy", "cython"] # Dependencies needed to build the package
build-backend = "setuptools.build_meta"
[project]
name = "pyprophet"
version = "3.0.8"
description = "PyProphet: Semi-supervised learning and scoring of OpenSWATH results."
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "BSD" }
authors = [{ name = "The PyProphet Developers", email = "rocksportrocker@gmail.com" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry"
]
keywords = ["bioinformatics", "OpenSWATH", "mass spectrometry"]
requires-python = ">=3.9, <3.14"
# Dependencies required for runtime
dependencies = [
"Click",
"loguru",
"duckdb",
"duckdb-extensions",
"duckdb-extension-sqlite-scanner",
"numpy >= 1.26.4",
"scipy",
"pandas >= 2.0",
"polars >= 1.28.1",
"cython",
"scikit-learn >= 1.5",
"xgboost-cpu >= 2.1.4", # regular xgboost includes nvidia libraries which bloat the package size on linux. For PyProphet, we likely would not need GPU support.
"matplotlib",
"pypdf",
"psutil",
"pyopenms",
"lxml",
"packaging"
]
# Optional dependencies
[project.optional-dependencies]
testing = ["pytest", "pytest-regtest", "pytest-xdist"]
docs = ["sphinx", "sphinx-copybutton", "sphinx_rtd_theme", "pydata_sphinx_theme", "sphinx-click"]
dev = ["pyprophet[testing]", "pyprophet[docs]", "black", "ruff", "mypy"]
parquet = ["pyarrow"]
# Define console entry points
[project.scripts]
pyprophet = "pyprophet.main:cli"
[tool.setuptools]
packages = { find = { where = ["."], exclude = ["tests*", "docs*", "examples*", "scripts*"] } }
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
pyprophet = ["py.typed", "**/*.pyx", "**/*.pxd"]