-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.05 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wavpy"
version = "0.2.7"
authors = [
{ name="Samuele Carcagno", email="[email protected]" },
]
description = "wavpy is a python module to read and write WAV files"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["numpy (>=1.0.0)",
"scipy (>=1.0.1)"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering"
]
[project.urls]
"Homepage" = "https://github.com/sam81/wavpy"
"Bug Tracker" = "https://github.com/sam81/wavpy/issues"
[tool.hatch.build]
include = [
"wavpy.py",
"tests/*.py",
"test_wavs/*.wav",
"doc/*
]
exclude = [
"old_other/*"
]