Skip to content

Commit

Permalink
Merge pull request #128 from beetbox/flit
Browse files Browse the repository at this point in the history
Switch to Flit
  • Loading branch information
sampsyo authored Aug 12, 2022
2 parents 32bac12 + ab64be8 commit b694c4f
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 60 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
8 changes: 0 additions & 8 deletions MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion audioread/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.

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

from . import ffdec
from .exceptions import DecodeError, NoBackendError
Expand Down
2 changes: 1 addition & 1 deletion audioread/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

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

version = '3.0.0'
version = '3.0.1'
short_version = '3.0'
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "audioread"
authors = [
{name = "Adrian Sampson", email = "[email protected]"}
]
readme = "README.rst"
requires-python = ">=3.6"
dynamic = ["version", "description"]
urls.Home = "https://github.com/beetbox/audioread"
classifiers = [
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]

[project.optional-dependencies]
test = [
"tox"
]
50 changes: 0 additions & 50 deletions setup.py

This file was deleted.

1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist = py36,py37,py38,py39,py310
isolated_build = True

[testenv]
deps = pytest
Expand Down

0 comments on commit b694c4f

Please sign in to comment.