-
Notifications
You must be signed in to change notification settings - Fork 757
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more details to pyproject metadata
- Loading branch information
Showing
1 changed file
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,34 @@ | ||
[project] | ||
name = "SMSTools" | ||
authors = [ | ||
{ name="Music Technology Group, Universitat Pompeu Fabra", email="[email protected]" }, | ||
] | ||
version = "0.99" | ||
description = "Sound analysis/synthesis tools for music applications" | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"matplotlib", | ||
"numpy", | ||
"scipy" | ||
] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Multimedia :: Sound/Audio :: Analysis", | ||
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/mtg/sms-tools" | ||
Issues = "https://github.com/mtg/sms-tools/issues" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["smstools"] | ||
include = ["models", "transformations"] | ||
exclude = ["models.interface", "transformations.interface"] | ||
|
||
[tool.setuptools.packages] | ||
find = {} # Scan the project directory with the default parameters | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel", "oldest-supported-numpy", "Cython"] | ||
|