-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
62 lines (52 loc) · 1.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
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "easypqp"
version = "0.1.58"
description = "EasyPQP: Simple library generation for OpenSWATH"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "George Rosenberger", email = "gr2578@cumc.columbia.edu" },
]
license = "BSD-3-Clause"
# Core dependencies required for basic EasyPQP functionality
dependencies = [
"numba",
"Click>=8.0.0",
"numpy==1.26.4",
"scipy",
"scikit-learn",
"statsmodels",
"pandas>=1.5.0",
"biopython",
"pyopenms>=3.3.0",
"matplotlib>=3.5.1",
"seaborn",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/grosenberger/easypqp"
[project.scripts]
easypqp = "easypqp.main:cli"
[project.optional-dependencies]
# PyProphet integration
# Install with: pip install easypqp[pyprophet]
pyprophet = ["pyprophet"]
# Rust backend for in-silico library generation
# Install with: pip install easypqp[rust]
rust = ["easypqp-rs>=0.1.7"]
# All optional features
# Install with: pip install easypqp[all]
all = [
"pyprophet",
"easypqp-rs>=0.1.7"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["easypqp*"]
[tool.setuptools.package-data]
easypqp = ["data/unimod.xml"]