-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
59 lines (50 loc) · 1.67 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "pychoacoustics"
version="0.6.14"
authors = [
{ name="Samuele Carcagno", email="[email protected]" },
]
description = "Python application for running psychoacoustics experiments"
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)",
"pysofaconventions (>=0.1.1)"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"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/pychoacoustics/pychoacoustics.html"
"Bug Tracker" = "https://github.com/sam81/pychoacoustics/issues"
[tool.setuptools]
packages = ["pychoacoustics"]
include-package-data = true
[tool.setuptools.exclude-package-data]
pychoacoustics = ["tests/*"]
[project.gui-scripts]
pychoacoustics = "pychoacoustics.__main__:main"
[project.optional-dependencies]
dev = ["sphinx-rtd-theme (>=1.0.0)"]