-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (35 loc) · 1.18 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
[build-system]
requires = ["setuptools>=70.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cats"
description = "CATS: Cluster Analysis of Trimmed Spectrograms"
license = {file = "LICENSE.md"}
readme = "README.md"
dynamic = ["dependencies", "version"]
requires-python = ">=3.9"
authors = [
{ name = "Serafim Grubas", email = "[email protected]" }
]
keywords = ["Signal processing", "Detection", "Denoising", "Noise estimation",
"Clustering", "Signal recognition", "Signal classification",
"Spectrogram", "Time-Frequency", "Sparse", "Earthquake", "Voice"]
classifiers = [
"Development Status :: Beta",
"Intended Audience :: Geophysics",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
version = {attr = "cats.__version__"}
[project.urls]
homepage = "https://github.com/sgrubas/cats"
repository = "https://github.com/sgrubas/cats"
[tool.setuptools.packages.find]
include = ["cats*"]
[tool.setuptools.package-data]
"cats" = ["data/*.zip",
"data/pretuned/*.pickle"]
[project.optional-dependencies]
jup = ["jupyterlab==4.2.5"]