-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (44 loc) · 1.49 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pysoundanalyser"
version="0.3.7"
authors = [
{ name="Samuele Carcagno", email="[email protected]" },
]
description = "Python program for visualizing short sounds (waveform, spectrum, etc...)"
license = {file = "COPYING.txt"}
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["matplotlib (>=3.0.0)",
"numpy (>=1.0.0)",
"pandas (>=1.0.0)",
"PyAudio (>=0.2.11)",
"PyQt6 (>=6.6.0)",
"scipy (>=1.0.1)"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[project.urls]
Homepage = "https://samcarcagno.altervista.org/pysoundanalyser/pysoundanalyser.html"
"Bug Tracker" = "https://github.com/sam81/pysoundanalyser/issues"
[tool.setuptools]
packages = ["pysoundanalyser"]
include-package-data = true
[project.gui-scripts]
pysoundanalyser = "pysoundanalyser.__main__:main"