Skip to content

Commit b694c4f

Browse files
authored
Merge pull request #128 from beetbox/flit
Switch to Flit
2 parents 32bac12 + ab64be8 commit b694c4f

File tree

7 files changed

+32
-60
lines changed

7 files changed

+32
-60
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist/

MANIFEST.in

Lines changed: 0 additions & 8 deletions
This file was deleted.

audioread/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# The above copyright notice and this permission notice shall be
1313
# included in all copies or substantial portions of the Software.
1414

15-
"""Decode audio files."""
15+
"""Multi-library, cross-platform audio decoding."""
1616

1717
from . import ffdec
1818
from .exceptions import DecodeError, NoBackendError

audioread/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
"""Version data for the audioread package."""
1616

17-
version = '3.0.0'
17+
version = '3.0.1'
1818
short_version = '3.0'

pyproject.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
[build-system]
2+
requires = ["flit_core >=3.2,<4"]
3+
build-backend = "flit_core.buildapi"
4+
5+
[project]
6+
name = "audioread"
7+
authors = [
8+
{name = "Adrian Sampson", email = "[email protected]"}
9+
]
10+
readme = "README.rst"
11+
requires-python = ">=3.6"
12+
dynamic = ["version", "description"]
13+
urls.Home = "https://github.com/beetbox/audioread"
14+
classifiers = [
15+
'Topic :: Multimedia :: Sound/Audio :: Conversion',
16+
'Intended Audience :: Developers',
17+
'Programming Language :: Python :: 3',
18+
'Programming Language :: Python :: 3.6',
19+
'Programming Language :: Python :: 3.7',
20+
'Programming Language :: Python :: 3.8',
21+
'Programming Language :: Python :: 3.9',
22+
'Programming Language :: Python :: 3.10',
23+
]
24+
25+
[project.optional-dependencies]
26+
test = [
27+
"tox"
28+
]

setup.py

Lines changed: 0 additions & 50 deletions
This file was deleted.

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
22
envlist = py36,py37,py38,py39,py310
3+
isolated_build = True
34

45
[testenv]
56
deps = pytest

0 commit comments

Comments
 (0)