-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (50 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
53 lines (50 loc) · 1.34 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tuneflow-devkit-py"
version = "0.8.7"
authors = [{ name = "Andantei", email = "contact@info.tuneflow.com" }]
description = "Implement your music models and algorithms directly in TuneFlow - The next-gen DAW for the AI era"
readme = "README.md"
requires-python = ">=3.7"
keywords = [
"AI",
"music",
"DAW",
"TuneFlow",
"composition",
"songwriting",
"music production",
"music generation",
"music transcription",
"mixing",
"music theory",
"music information retrieval",
"MIR",
"music analysis",
"song analysis",
"SDK",
"devkit",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'python-socketio >= 5.7.2',
'uvicorn[standard] >= 0.20.0',
'tuneflow-py >= 0.8.3',
'msgpack == 1.0.4',
'fastapi == 0.92.0',
'msgpack-asgi == 1.1.0'
]
[project.urls]
"Homepage" = "https://github.com/tuneflow/tuneflow-devkit-py"
"Bug Tracker" = "https://github.com/tuneflow/tuneflow-devkit-py/issues"
[tool.pyright]
include = ["src"]
exclude = ["**/__pycache__", "src/experimental", "src/typestubs"]
reportTypedDictNotRequiredAccess = "warning"
reportGeneralTypeIssues = "warning"