Skip to content

Commit

Permalink
Move from setup.cfg to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rubinstein committed Oct 1, 2023
1 parent e40ad6f commit 0496379
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 81 deletions.
74 changes: 74 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
[project]
name = basic-pitch
version = attr: basic_pitch.__version__
description = Basic Pitch, a lightweight yet powerful audio-to-MIDI converter with pitch bend detection.
long_description = Basic Pitch, a lightweight yet powerful audio-to-MIDI converter with pitch bend detection. See https://github.com/spotify/basic-pitch for more details.
author = Spotify
author_email = b[email protected]
maintainer = Spotify
maintainer_email = b[email protected]
url = https://github.com/spotify/basic-pitch
keywords =
license = Apache 2.0
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"coremltools; platform_system == 'Darwin' and python_version < '3.11'",
"librosa>=0.8.0",
"mir_eval>=0.6",
"numpy<1.24,>=1.18",
"onnxruntime; platform_system == 'Windows' and python_version < '3.11'",
"pretty_midi>=0.2.9",
"resampy>=0.2.2",
"scipy>=1.4.1",
"tflite-runtime; platform_system == 'Linux' and python_version < '3.11'",
"typing_extensions",
"tensorflow>=2.4.1; platform_system != 'Darwin' and python_version >= '3.11'",
"tensorflow-macos>=2.4.1; platform_system == 'Darwin' and '3.7' > python_version >= '3.11'",
]

[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests"]
namespaces = false

[project.scripts]
basic-pitch = basic_pitch.predict:main

[project.optional-dependencies]
test = [
"coverage>=5.0.2",
"pytest>=6.1.1",
"pytest-mock",
]
tf = [
"tensorflow>=2.4.1; platform_system != 'Darwin'",
"tensorflow-macos>=2.4.1; platform_system == 'Darwin' and python_version > '3.7'",
]
coreml = ["coremltools"]
onnx = ["onnxruntime"]
docs = ["mkdocs>=1.0.4"]
dev = [
"basic_pitch[test,tf,coreml,onnx,docs]",
"mypy",
"tox",
]

[tool.distutils.bdist_wheel]
universal = true

[build-system]
requires =
wheel
cython
81 changes: 0 additions & 81 deletions setup.cfg

This file was deleted.

0 comments on commit 0496379

Please sign in to comment.