Skip to content

Commit 5b3701b

Browse files
committed
Try switching to flit
Replacing setup.py with pyproject.toml.
1 parent 32bac12 commit 5b3701b

File tree

3 files changed

+26
-58
lines changed

3 files changed

+26
-58
lines changed

MANIFEST.in

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

pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[build-system]
2+
requires = ["flit_core >=2,<4"]
3+
build-backend = "flit_core.buildapi"
4+
5+
[tool.flit.metadata]
6+
module = "audioread"
7+
author = "Adrian Sampson"
8+
author-email = "[email protected]"
9+
home-page = "https://github.com/beetbox/audioread"
10+
description-file = "README.rst"
11+
requires-python = ">=3.6"
12+
classifiers = [
13+
'Topic :: Multimedia :: Sound/Audio :: Conversion',
14+
'Intended Audience :: Developers',
15+
'Programming Language :: Python :: 3',
16+
'Programming Language :: Python :: 3.6',
17+
'Programming Language :: Python :: 3.7',
18+
'Programming Language :: Python :: 3.8',
19+
'Programming Language :: Python :: 3.9',
20+
'Programming Language :: Python :: 3.10',
21+
]
22+
23+
[tool.flit.metadata.requires-extra]
24+
test = [
25+
"tox"
26+
]

setup.py

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

0 commit comments

Comments
 (0)