-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 958 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 958 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dadascribe"
version = "0.1.0"
authors = [
{ name = "PatzEdi", email = "patzedigithub@gmail.com" },
{ name = "Fabrizio Ferrari", email = "fabriziovsm@gmail.com" }
]
description = "Python wrapper for the DaDaScribe API"
readme = "README.md"
keywords = ["transcriptions", "diarization", "whisper"]
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
license="MIT"
license-files=["LICENSE"]
dependencies = ["requests"]
[project.scripts]
dadascribe = "dadascribe.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/dadascribe"]
[project.urls]
"Homepage" = "https://api.dadascribe.com/"
"Repository" = "https://github.com/PatzEdi/dadascribe-api-python/"
"Bug Tracker" = "https://github.com/PatzEdi/dadascribe-api-python/issues"