-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (58 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (58 loc) · 1.97 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
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "text-to-music-prompt-structurer"
version = "0.1.1"
description = "Turn free-form musical ideas into structured prompts for text-to-music workflows."
readme = "README.md"
requires-python = ">=3.10"
license = "MPL-2.0"
license-files = ["LICENSE", "NOTICE"]
authors = [
{ name = "Eduardo J. Barrios" },
]
keywords = ["music", "prompt", "text-to-music", "suno", "music-generation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Multimedia :: Sound/Audio",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
dev = [
"build>=1.2",
"pytest>=8",
"ruff>=0.12",
"twine>=6",
]
[project.urls]
Homepage = "https://github.com/edujbarrios/text-to-music-prompt-structurer"
Documentation = "https://github.com/edujbarrios/text-to-music-prompt-structurer#readme"
Repository = "https://github.com/edujbarrios/text-to-music-prompt-structurer"
Issues = "https://github.com/edujbarrios/text-to-music-prompt-structurer/issues"
Changelog = "https://github.com/edujbarrios/text-to-music-prompt-structurer/blob/main/CHANGELOG.md"
[project.scripts]
text-to-music-prompt = "text_to_music_prompt_structurer.cli:main"
[tool.setuptools.packages.find]
include = ["text_to_music_prompt_structurer*"]
[tool.setuptools.package-data]
text_to_music_prompt_structurer = ["vocab/*.json", "py.typed"]
[tool.pytest.ini_options]
addopts = "-ra --strict-markers --strict-config"
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.ruff.format]
line-ending = "lf"