-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.67 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mw"
authors = [{name = "Jamie Hardt", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
requires-python = "~=3.8"
classifiers = [
'Topic :: Multimedia',
'Topic :: Multimedia :: Sound/Audio',
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"numpy ~= 2.0",
"parsimonious ~= 0.10.0",
"pydub ~= 0.25.1",
"apeek ~= 0.2.0",
"gnureadline ~= 8.1.2"
]
keywords = [
'waveform',
'metadata',
'audio',
'console'
]
[tool.flit.external-data]
directory = "data"
[tool.flit.module]
name = "mw"
[project.optional-dependencies]
doc = [
'sphinx >= 5.3.0',
'sphinx_rtd_theme >= 1.1.1',
]
[project.urls]
Home = "https://github.com/iluvcapra/mw"
# Documentation = "https://apeek.readthedocs.io/"
Source = "https://github.com/iluvcapra/mw.git"
Issues = 'https://github.com/iluvcapra/mw/issues'
[project.entry_points.console_scripts]
mw = 'mw.__main__:main'
[project.scripts]
mw = "mw.__main__:main"
[tool.pyright]
typeCheckingMode = "basic"
[tool.pylint]
max-line-length = 88
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
]