-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.52 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
[build-system]
requires = ["setuptools", "wheel", "numpy", "cython"] # Dependencies needed to build the package
build-backend = "setuptools.build_meta"
[project]
name = "pyprophet"
version = "2.2.9"
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",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry"
]
keywords = ["bioinformatics", "openSWATH", "mass spectrometry"]
# Dependencies required for runtime
dependencies = [
"Click",
"duckdb",
"duckdb-extensions",
"duckdb-extension-sqlite-scanner",
"numpy >= 2.0",
"scipy",
"pandas >= 0.17",
"cython",
"numexpr >= 2.10.1",
"scikit-learn >= 0.17",
"xgboost",
"hyperopt",
"statsmodels >= 0.8.0",
"matplotlib",
"tabulate",
"pyarrow",
"pypdf"
]
# Optional dependencies
[project.optional-dependencies]
testing = ["pytest", "pytest-regtest"]
# Define console entry points
[project.scripts]
pyprophet = "pyprophet.main:cli"
[tool.setuptools]
packages = { find = { exclude = ["ez_setup", "examples", "tests"] } }
include-package-data = true
zip-safe = false