Skip to content

Commit

Permalink
Add more details to pyproject metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
alastair committed Sep 12, 2024
1 parent c0bbcbb commit 31ff5fa
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions pyproject.toml
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"]
Expand Down

0 comments on commit 31ff5fa

Please sign in to comment.