-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.65 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
58
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "thunderlab"
dynamic = ["version"]
dependencies = [
"scikit-learn",
"scipy",
"numpy",
"numba",
"matplotlib",
"audioio>=2.4"
]
requires-python = ">=3.6"
authors = [
{name = "Jan Benda", email = "jan.benda@uni-tuebingen.de"},
{name = "Jörg Henninger"},
{name = "Jan Grewe"},
{name = "Fabian Sinz"},
]
maintainers = [
{name = "Jan Benda", email = "jan.benda@uni-tuebingen.de"},
]
description = "Algorithms and scripts for analyzing recordings of electric fish waveforms."
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 :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/bendalab/thunderlab"
Documentation = "https://bendalab.github.io/thunderlab"
[project.scripts]
convertdata = "thunderlab.convertdata:main"
multivariateexplorer = "thunderlab.multivariateexplorer:main"
[tool.setuptools.dynamic]
version = {attr = "thunderlab.version.__version__"}
[tool.pytest.ini_options]
pythonpath = "src"