-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
66 lines (54 loc) · 1.53 KB
/
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
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
[tool.poetry]
name = "flapi"
version = "1.0.1"
description = "Remotely control FL Studio using the MIDI Controller Scripting API"
authors = ["Maddy Guthridge <hello@maddyguthridge.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/MaddyGuthridge/Flapi"
keywords = [
"fl",
"studio",
"fl studio",
"midi",
"script",
"midi controller scripting",
"remote",
"remote control",
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Typing :: Typed",
]
include = ["py.typed"]
packages = [{ include = "flapi" }]
[tool.poetry.urls]
"Online Documentation" = "https://maddyguthridge.github.io/Flapi"
"Bug Tracker" = "https://github.com/MaddyGuthridge/Flapi/issues"
[tool.poetry.scripts]
flapi = "flapi.__main__:cli"
[tool.mypy]
exclude = ['flapi/server/*']
python_version = "3.12"
[tool.poetry.dependencies]
python = "^3.12"
fl-studio-api-stubs = ">=37.0.0"
mido = { extras = ["ports-rtmidi"], version = "^1.3.2" }
typing-extensions = "^4.9.0"
ipython = { version = "^8.18.1", optional = true }
click = "^8.1.7"
click-default-group = "^1.2.4"
[tool.poetry.extras]
ipython = ["ipython"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"