forked from AstraZeneca/MVDA_exploration_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.13 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
[build-system]
requires = ["setuptools>=61.0"] # Build-time dependencies
build-backend = "setuptools.build_meta" # Use setuptools as the build backend
[project]
name = "mvda_exploration_tools" # Name of your package (must be unique on PyPI)
version = "0.1.13" # Semantic version (MAJOR.MINOR.PATCH)
authors = [
{ name = "Mats Josefson", email = "[email protected]" } # Author info
]
description = "Multivariate data analysis (MVDA) exploration tool is a Python library utilizing the scikit-learn library for partial least squares (PLS) and principal components analysis (PCA)."
requires-python = ">=3.9" # Minimum Python version supported
dependencies = [
"numpy>=2.2.6",
"scipy>=1.3.3",
"scikit-learn>=1.2.2",
"pandas>=1.3.5",
"openpyxl>=3.0.9",
"matplotlib>=3.8.2",
"bokeh>=3.1.1",
"jupyterlab>=4.0.0",
"qtpy>=2.3.0",
"pyqt5>=5.15.11",
"platformdirs",
"darkdetect"
]
readme = "README.md"
[tool.setuptools.package-data]
mvda_exploration_tools = [
"**/decimated_spectra.xlsx", # Match xlsx files in test_data/
]
[project.scripts]
MVDA_exploration = "mvda_exploration_tools.MVDA_exploration:main"