-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.4 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "audian"
dynamic = ["version"]
dependencies = [
"scipy",
"numpy",
"numba",
"pandas",
"matplotlib",
"PyQt5",
"pyqtgraph",
"thunderlab>=1.3.1"
]
requires-python = ">=3.6"
authors = [
{name = "Jan Benda", email = "jan.benda@uni-tuebingen.de"},
]
maintainers = [
{name = "Jan Benda", email = "jan.benda@uni-tuebingen.de"},
]
description = "GUI for viewing and analyzing recordings of animal vocalizations."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/bendalab/audian"
[project.scripts]
audian = "audian.audian:run"
[tool.setuptools.dynamic]
version = {attr = "audian.version.__version__"}
[tool.pytest.ini_options]
pythonpath = "src"