-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
86 lines (79 loc) · 1.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "acoupipe"
version = "24.04" # Date based release versioning
description = "Library for the generation of large-scale microphone array data for machine learning"
readme = "README.rst"
license = {file = "LICENSE.txt"}
requires-python = ">=3.8,<=11"
authors = [
{name = "Acoular Development Team", email = "[email protected]"},
]
keywords = [
"acoustics",
"beamforming",
"deep learning",
"machine learning",
"microphone array",
"sound source localization",
"sound source characterization",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
'acoular>=24.03',
'ray',
'h5py',
'tqdm',
'parameterized',
'pooch',
]
maintainers = [
{name = "Adam Kujawski", email = "[email protected]"},
{name = "Art Pelling", email = "[email protected]"},
{name = "Simon Jekosch", email = "[email protected]"},
]
[project.optional-dependencies]
dev = [
"tensorflow",
"ipython",
"ipykernel",
"nb-clean",
"pre-commit",
"ruff==0.0.260",
"sphinx",
"sphinx-autoapi",
"nbsphinx",
"sphinx-rtd-theme",
"sphinx-gallery",
"sphinxcontrib.bibtex",
"pandas",
"pandoc",
]
full = [
"tensorflow",
]
[project.urls]
documentation = "https://adku1173.github.io/acoupipe/"
repository = "https://github.com/adku1173/acoupipe"
source = "https://github.com/adku1173/acoupipe"
tracker = "https://github.com/adku1173/acoupipe/issues"
[tool.ruff]
src = ["src"]
ignore = [
"D100", "D101", "D102", "D103", "D105", "D107",
"D203", "D213", "D206",
"B905",
"N806", "N803",
"E741"]
line-length = 140
select = ["B", "D", "E", "F", "I", "N", "Q", "W"]
[tool.ruff.pydocstyle]
convention = "numpy"