Skip to content

Commit 027a004

Browse files
committed
try fixing actions
1 parent 0f53880 commit 027a004

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

pyproject.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,35 @@ build-backend = "setuptools.build_meta"
1212
[tool.cibuildwheel]
1313
build = "cp39-* cp310-* cp311-* cp312-* cp313-*"
1414
skip = "pp* *686* *-musllinux_*"
15+
16+
17+
[project]
18+
name = "vamphost"
19+
version = "1.3.2"
20+
dependencies = [
21+
"numpy",
22+
]
23+
24+
requires-python = ">=3.10"
25+
authors = [
26+
{name = "Chris Cannam"},
27+
{name = "George Fazekas"},
28+
]
29+
maintainers = [
30+
{name = "Eduardo Moguillansky", email = "eduardo.moguillansky@gmail.com"}
31+
]
32+
description = "Use Vamp plugins for audio feature analysis"
33+
readme = "README.rst"
34+
license = "MIT"
35+
license-files = ["LICENSE.txt"]
36+
classifiers = [
37+
'Development Status :: 4 - Beta',
38+
'Intended Audience :: Science/Research',
39+
'Intended Audience :: Developers',
40+
'Operating System :: MacOS :: MacOS X',
41+
'Operating System :: Microsoft :: Windows',
42+
'Operating System :: POSIX',
43+
'Programming Language :: Python',
44+
'Programming Language :: Python :: 3',
45+
'Topic :: Multimedia :: Sound/Audio :: Analysis'
46+
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ def __str__(self):
4848
description = 'Use Vamp plugins for audio feature analysis.',
4949
long_description = ( read('README.rst') + '\n\n' + read('COPYING.rst') ),
5050
license = 'MIT',
51+
license_file = "LICENSE.txt",
5152
packages = find_packages(exclude = [ '*test*' ]),
5253
ext_modules = [ vampyhost ],
5354
install_requires = ['numpy'],
@@ -58,7 +59,6 @@ def __str__(self):
5859
'Development Status :: 4 - Beta',
5960
'Intended Audience :: Science/Research',
6061
'Intended Audience :: Developers',
61-
'License :: OSI Approved :: MIT License',
6262
'Operating System :: MacOS :: MacOS X',
6363
'Operating System :: Microsoft :: Windows',
6464
'Operating System :: POSIX',

0 commit comments

Comments
 (0)