-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
148 lines (136 loc) · 3.87 KB
/
pyproject.toml
File metadata and controls
148 lines (136 loc) · 3.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[project]
name = "stemsplit-python"
version = "0.1.0"
description = "Official Python SDK for the StemSplit hosted stem-separation API. Synchronous client, typed pydantic models, automatic file uploads, job-completion polling, YouTube jobs, webhook signature verification, and a Stripe-style error hierarchy."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "StemSplit", email = "team@stemsplit.io" },
]
maintainers = [
{ name = "StemSplit", email = "team@stemsplit.io" },
]
keywords = [
"stemsplit",
"stem-separation",
"stems",
"vocal-removal",
"vocal-remover",
"vocal-isolation",
"instrumental-extraction",
"karaoke",
"karaoke-maker",
"acapella",
"acapella-extractor",
"audio",
"music",
"audio-ml",
"audio-processing",
"music-source-separation",
"source-separation",
"demucs",
"htdemucs",
"sdk",
"api",
"api-client",
"client",
"youtube",
"rest",
"http-client",
"webhooks",
"bpm",
"key-detection",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27,<1.0",
"pydantic>=2.5,<3.0",
"typing-extensions>=4.7; python_version<'3.11'",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"respx>=0.21",
"ruff>=0.5",
"mypy>=1.10",
]
[project.urls]
Homepage = "https://stemsplit.io/developers"
Documentation = "https://stemsplit.io/developers/docs"
Repository = "https://github.com/StemSplit/stemsplit-python"
"Source Code" = "https://github.com/StemSplit/stemsplit-python"
"Bug Tracker" = "https://github.com/StemSplit/stemsplit-python/issues"
Changelog = "https://github.com/StemSplit/stemsplit-python/blob/main/CHANGELOG.md"
Discussions = "https://github.com/StemSplit/stemsplit-python/discussions"
"Hosted API" = "https://stemsplit.io/developers"
"API Reference" = "https://stemsplit.io/developers/reference"
"StemSplit App" = "https://stemsplit.io"
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/stemsplit_python"]
[tool.hatch.build.targets.sdist]
include = [
"src/stemsplit_python",
"openapi",
"README.md",
"CHANGELOG.md",
"LICENSE",
"pyproject.toml",
]
[tool.ruff]
line-length = 100
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "RUF"]
ignore = [
"E501",
"B008",
]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.10"
strict = true
files = ["src/stemsplit_python"]
[[tool.mypy.overrides]]
module = "respx.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = [
"error",
"ignore::DeprecationWarning:pydantic.*",
]