-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
56 lines (49 loc) · 1017 Bytes
/
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
[project]
name = "mfbluebox"
version = "0.1.2"
authors = [
{ name="zeyus", email="[email protected]" },
]
description = "A python (Dual-Tone) Multi-Frequency (DTMF) tone generator."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE.md"}
dependencies = [
"PyAudio",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
"Homepage" = "https://github.com/zeyus/Python3BlueBox"
"Bug Tracker" = "https://github.com/zeyus/Python3BlueBox/issues"
[tool.setuptools.packages.find]
include = ["bluebox*"]
[tool.pytest.ini_options]
pythonpath = [
".",
]
[tool.mypy]
exclude = [
'.git',
'__pycache__',
'tests',
]
show_error_codes = true
pretty = true
files = [
".",
]
#[[tool.mypy.overrides]]
#ignore_missing_imports = true
[tool.flake8]
exclude = [
'.git',
'__pycache__'
]
count = true