-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
61 lines (56 loc) · 1.22 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
59
60
61
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyfinch"
version = "0.0.2"
description = "A python package for analyzing neural & bioacoustics signals from songbirds"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Jaerong Ahn", email = "[email protected]" }]
keywords = ["python", "songbird", "zebra finch", "neuroscience", "bioacoustics"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"ffmpeg-python",
"h5py",
"librosa",
"matplotlib",
"numpy",
"pandas",
"scikit-learn",
"scipy",
"soundfile",
"seaborn",
"soundfile",
"librosa",
"scikit-posthocs",
"statsmodels",
]
[project.urls]
repository = "https://github.com/JaerongA/pyfinch.git"
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"