-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
66 lines (60 loc) · 1.5 KB
/
Copy pathsetup.cfg
File metadata and controls
66 lines (60 loc) · 1.5 KB
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
[metadata]
description = Give audio that brown sound
name = brownify
version = 0.3.0
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_file = LICENSE
url = https://github.com/gth828r/brownify
project_urls =
Documentation = https://brownify.readthedocs.io/en/latest/
Source = https://github.com/gth828r/brownify
author = Tim Upthegrove
author_email = tim.upthegrove@gmail.com
maintainer = Tim Upthegrove
maintainer_email = tim.upthegrove@gmail.com
keywords = audio, brown
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options.entry_points]
console_scripts=
brownify = brownify.cli:main
[options]
setup_requires =
setuptools>=48
python_requires = >=3.8
zip_safe = False
packages = find:
include_package_data = True
install_requires =
librosa==0.8.0
numpy==1.21.5
protobuf==3.19.4
pydub==0.25.1
pyparsing==2.4.7
soundfile==0.10.3.post1
spleeter==2.3.2
tqdm==4.62.2
yt-dlp==2024.8.6
[options.extras_require]
docs =
myst-parser==0.17.2
Sphinx==4.4.0
dev =
coverage==6.3.2
pre-commit==2.18.1
pytest==7.0.1
[flake8]
max_line_length = 79
max-complexity = 15
select = B,C,E,F,W,T4,B902,T,P
# Ignore W503 since it will eventually be changed to match the behavior we
# currently have in our code
ignore = W503
show_source = true
count = true