-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 746 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 746 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "uvvislib"
version = "0.1.0"
description = "Modular Python library for UV-Vis / NIR spectroscopy and machine learning."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [{ name = "UVVisResearch Team" }]
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"scipy",
"matplotlib",
"seaborn",
"torch",
"joblib",
]
[project.optional-dependencies]
interpret = ["captum"]
dev = ["pytest", "black"]
[tool.setuptools.packages.find]
include = ["uvvislib*"]
exclude = ["tests*", "examples*", "docs*", "Data*", "data*", "research_input*"]
[tool.black]
line-length = 100