-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (37 loc) · 909 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
[tool.poetry]
name = "pydub-stubs"
version = "0.25.1.5"
description = "Stub-only package containing type information for pydub"
authors = ["SeparateRecords <hey@clo4.net>"]
license = "ISC"
packages = [
{ include = "pydub-stubs" },
]
keywords = [
"pydub",
"types",
"typing",
"stubs",
]
repository = "https://github.com/clo4/pydub-stubs"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Typing :: Stubs Only",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
typing-extensions = ">=4.0.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
black = "^24.10.0"
pydub = "^0.25.1"
[tool.black]
pyi = true
line-length = 130
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"