-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (38 loc) · 1.33 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
# This file is necessary for the build system as it specifies the build-time
# dependencies.
# You need to keep it in sync with development dependencies specified in
# Pipfile.
[build-system]
requires = [
"Cython==3.*",
"numpy==2.1.*",
"setuptools"
]
# Required table with required fields: https://peps.python.org/pep-0621/#table-name.
[project]
name = "pycodec2"
version = "4.0.0"
description = "A Cython wrapper for codec2"
readme = "README.md"
# Authors are defined in setup.py.
# https://discuss.python.org/t/adding-extra-fields-in-the-pyproject-toml-authors-maintainers-list/16848/3
dynamic = ["authors"]
keywords = ["codec2", "audio", "voice", "speech"]
classifiers=[
'Topic :: Multimedia :: Sound/Audio :: Speech',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
]
# Necessary for cibuildwheel not to use an old python that may have old
# libraries. E.g., python 3.6 does not have numpy 1.26.
# https://cibuildwheel.readthedocs.io/en/stable/options/#requires-python
#
# Using at least Python 3.10, because Numpy 2.1.0 requires it
# (https://numpy.org/devdocs//release/2.1.3-notes.html).
requires-python = ">=3.10"
# Use-time dependencies.
dependencies = [
# The package will error out on import if these are not installed.
"numpy>=2.00, <3.0.0",
]