-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.05 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
[project]
name = "mfbluebox"
version = "0.3.0"
authors = [
{ name="zeyus", email="support@zeyus.com" },
]
description = "A python (Dual-Tone) Multi-Frequency (DTMF) tone generator."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license = {file = "LICENSE.md"}
dependencies = [
"PyAudio>=0.2.14",
]
[project.optional-dependencies]
dev = [
"pytest>=9.1.1",
"mypy>=2.1.0",
"flake8>=7.3.0",
"build>=1.5.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
"Homepage" = "https://github.com/zeyus/Python3BlueBox"
"Bug Tracker" = "https://github.com/zeyus/Python3BlueBox/issues"
[tool.hatch.build.targets.wheel]
packages = ["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