-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1023 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1023 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "abletoolz"
version = "1.1.1"
requires-python = ">=3.10"
description = "Tools made for editing, fixing and analyzing Ableton Live sets."
authors = [
{name = "ElixirBeats"},
]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"colorama",
"chardet",
"tqdm",
"colormath",
"pydantic",
# For setting file creation date.
"win32_setctime; platform_system == 'Windows'"
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://elixirbeats.github.io/abletoolz/"
Repository = "https://github.com/elixirbeats/abletoolz"
[project.scripts]
abletoolz = "abletoolz:main"
[tool.setuptools]
packages = ["abletoolz"]