-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.41 KB
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
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sound_lib"
version = "0.8.8"
description = "Pythonic wrapper to the Bass sound library and various add-ons"
authors = [
{name = "Christopher Toth", email = "q@q-continuum.net"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"libloader",
"platform_utils==1.6.2",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0",
"lxml>=4.9.0",
"tqdm>=4.65.0",
]
[project.urls]
Homepage = "https://github.com/q-continuum/sound_lib"
Issues = "https://github.com/q-continuum/sound_lib/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["sound_lib*"]
[tool.setuptools.package-data]
sound_lib = ["lib/x86/*", "lib/x64/*"]
[dependency-groups]
dev = [
"mypy>=1.4.1",
"pyright>=1.1.406",
"pytest>=7.4.4",
"ruff>=0.14.0",
]