-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.74 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chord-progressions"
dynamic = ["version"]
description = "A Python package for working with chord progressions "
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "p3zo", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
]
dependencies = [
"matplotlib~=3.5.1",
"mido~=1.2.10",
"networkx~=2.8",
"numpy~=1.22.3",
"pandas~=1.4.2",
"pretty_midi~=0.2.10",
"scipy~=1.8.0",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["chord_progressions", "chord_progressions.*"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "chord_progressions.__version__"}
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "black", "flake8", "ipdb", "ipython", "isort", "bump-my-version", "mkdocs-material"]
test = ["pytest", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/p3zo/chord-progressions"
Issues = "https://github.com/p3zo/chord-progressions/issues"
[tool.bumpversion]
current_version = "0.37.1"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
replace = "{new_version}"
regex = false
ignore_missing_version = false
tag = true
sign_tags = false
tag_name = "v{new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""