-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.16 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ramanspy"
version = "0.2.10"
description = "RamanSPy: An open-source Python package for integrative Raman spectroscopy data analysis"
readme = "README.md"
authors = [{ name = "Dimitar Georgiev", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = [
"Raman spectroscopy",
"spectral analysis",
"chemometrics",
"preprocessing pipeline",
"artificial intelligence",
"machine learning",
"Python package",
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"scikit-learn",
"pybaselines",
"pysptools",
"cvxopt",
"renishawWiRE",
"pandas",
"wget",
]
requires-python = ">=3.8"
[project.urls]
Documentation = "https://ramanspy.readthedocs.io"
Source = "https://github.com/barahona-research-group/RamanSPy"
Paper = "https://pubs.acs.org/doi/10.1021/acs.analchem.4c00383"
[options.packages.find]
where = "src"