-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
58 lines (55 loc) · 1.33 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
56
57
58
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "pyspectools"
description = "A set of Python tools/routines for spectroscopy"
homepage = "https://github.com/laserkelvin/PySpecTools"
repository = "https://github.com/laserkelvin/PySpecTools"
documentation = "https://laserkelvin.github.com/PySpecTools"
readme = "README.md"
authors = [
{"name" = "Kelvin Lee", "email" = "[email protected]"}
]
version = "5.0.2"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.16",
"scipy>=1.7.1",
"matplotlib>=3.4.3",
"astroquery@git+https://github.com/astropy/astroquery",
"astropy>=4.3.1",
"lmfit>=1.0.2",
"PeakUtils>=1.3.2",
"scikit-learn>=1.0.0",
"colorlover>=0.3.0",
"monsterurl>=0.2",
"plotly>=3.0.0",
"periodictable>=1.6.0",
"uncertainties>=3.1.6",
"joblib",
"ruamel.yaml>=0.17.16",
"paramiko>=2.7.2",
"Jinja2>=3.0.1",
"tqdm",
"tinydb>=4.5.2",
"networkx>=2.6.3",
"numba",
"ipython",
"ipywidgets",
"bokeh"
]
[project.optional-dependencies]
dev = [
"pytest",
"pre-commit",
"ruff"
]
[tool.hatch.metadata]
allow-direct-references = true