-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 1.95 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (65 loc) · 1.95 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PySDKit"
dynamic = ["version"]
description = "A Python library for signal decomposition algorithms with a unified interface."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Whenxuan Wang" },
{ name = "RuiZhe Wang" },
{ name = "Rongkun Zhu" },
{ name = "Kai Wu" },
{ name = "Lei Wang" },
{ name = "Xinyu Wu"},
{ name = "josefinez" },
{ name = "Deeksha Manjunath" },
{ name = "Yuan Feng" },
{ name = "WenTong Zhao" },
{ name = "JacktheFowler" },
]
maintainers = [
{ name = "Whenxuan Wang", email = "wwhenxuan@gmail.com" },
{ name = "RuiZhe Wang", email = "3133986068@qq.com" },
]
keywords = [
"signal decomposition",
"signal processing",
"machine learning",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.24.3",
"scipy>=1.11.1",
"matplotlib>=3.7.2",
"tqdm>=4.66.5",
"requests>=2.32.3",
]
[project.urls]
Homepage = "https://github.com/wwhenxuan/PySDKit"
Repository = "https://github.com/wwhenxuan/PySDKit"
Issues = "https://github.com/wwhenxuan/PySDKit/issues"
[tool.setuptools.dynamic]
version = { attr = "pysdkit.__version__" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["pysdkit*"]
[tool.setuptools.package-data]
"pysdkit.data" = ["*.txt", "real_world/*.npy"]