Skip to content

Commit

Permalink
Extension of the pyproject.toml file, to contain all informations of …
Browse files Browse the repository at this point in the history
…the setup.py
  • Loading branch information
sibange committed May 28, 2024
1 parent 19aa514 commit e7cd180
Showing 1 changed file with 62 additions and 1 deletion.
63 changes: 62 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,63 @@
[build-system]
requires = ["setuptools", "wheel", "Cython", "numpy", "scipy", "zmq"]
requires = ["setuptools", "wheel", "Cython", "numpy", "scipy"]

[project]
name = "nara_wpe"
version = "0.0.9"
dependencies = [
"pathlib2; python_version<'3.0'",
"numpy",
"tqdm",
"soundfile",
"bottleneck",
"click"
]
requires-python = ">=3.6"
authors = [
{name = "Department of Communications Engineering, Paderborn University", email = "[email protected]"},
]
description = "Weighted Prediction Error for speech dereverberation"
readme = "README.rst"
license = {text ="MIT"}
keywords = ["speech"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",

# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",

# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.6",
]

[project.optional-dependencies]
dev = ["check-manifest"]
test = [
"pytest",
"coverage",
"jupyter",
"matplotlib",
"scipy",
"tensorflow==1.12.0; python_version<'3.7'", # Python 3.7 has no tensorflow==1.12.0
"pytest-cov",
"codecov",
"pandas",
"torch",
"cached_property",
"zmq",
"pyzmq", # Required to install pymatbridge
"pymatbridge",
]

[project.urls]
Homepage = "https://github.com/fgnt/nara_wpe"
Repository = "https://github.com/fgnt/nara_wpe"

0 comments on commit e7cd180

Please sign in to comment.