-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 962 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "icad_tone_detection"
version = "1.4"
authors = [
{name = "TheGreatCodeholio", email = "[email protected]"},
]
description = "A Python library for extracting scanner radio tones from scanner audio."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy~=1.26.4",
"requests~=2.31.0",
"pydub~=0.25.1",
"scipy~=1.12.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = ["icad_tone_detection"]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.package-data]
"icad_tone_detection" = ["../examples/*"]
[project.urls]
Homepage = "https://github.com/thegreatcodeholio/icad_tone_detection"
Issues = "https://github.com/thegreatcodeholio/icad_tone_detection/issues"