-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.2 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
[build-system]
requires = ["rye", "setuptools", "wheel", "Cython>=3.0.11", "numpy>=2.1.2"]
build-backend = "rye.build"
[project]
name = "SDFT"
version = "0.2.0"
description = "Sliding Discrete Fourier Transform (SDFT) Implementation"
readme = "README.md"
requires-python = ">=3.13"
keywords = ["SDFT", "Fourier Transform", "Signal Processing", "Audio"]
license = { text = "MIT" }
authors = [
{ name = "Shikhir Arora", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3.13",
"Programming Language :: Cython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Multimedia :: Sound/Audio :: Analysis"
]
dependencies = [
"Cython>=3.0.11",
"numpy>=2.1.2",
"scipy>=1.14.1",
"matplotlib>=3.9.2",
"sounddevice>=0.5.0",
"rich>=13.9.2"
]
[project.urls]
Homepage = "https://github.com/shikhir-arora/sdft"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.3.3",
"black>=24.8.0",
"flake8>=7.1.1",
"mypy>=1.11.2"
]
[tool.rye.build]
script = "build.py"