-
Notifications
You must be signed in to change notification settings - Fork 61
/
pyproject.toml
38 lines (35 loc) · 1.04 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rampy"
version = "0.5.3"
dependencies = [
"numpy>=1.12",
"scipy",
"scikit-learn",
"pandas",
"xlrd",
"matplotlib"
]
authors = [
{name = "Charles Le Losq", email = "[email protected]"},
]
requires-python = ">=3.8"
license = {file = "LICENSE"}
description = "A Python module containing functions to treat spectroscopic (XANES, Raman, IR...) data"
readme = "README.md"
keywords = ["spectroscopy", "data", "treatment", "Raman", "XANES", "Infrared", "NMR"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.optional-dependencies]
gcvspline = ["gcvspline"]
mixing = ["cvxpy>=1.1"]
[project.urls]
Homepage = "https://github.com/charlesll/rampy/"
Documentation = "http://charlesll.github.io/rampy/html/index.html"
Repository = "https://github.com/charlesll/rampy.git"
"Bug Tracker" = "https://github.com/charlesll/rampy/issues"
Changelog = "https://github.com/charlesll/rampy/NEWS.md"