-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (31 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pywwise"
version = "0.1.0"
description = "A comprehensive Wwise Authoring API wrapper - fully documented, with auto-completion in mind."
authors = [{ name = "Matheus Vilano" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.12"
keywords = ["audiokinetic", "wwise", "waapi", "game", "audio", "sound", "automation", "scripting", "asset", "pipeline"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"simplevent~=2.1.3",
"waapi-client~=0.7.2"
]
[project.urls]
"Author Website" = "https://www.matheusvilano.com/"
"Git Repository" = "https://github.com/matheusvilano/PyWwise.git"
[tool.setuptools.packages]
find = { where = ["."], include = ["pywwise", "pywwise.*"] }
[tool.setuptools.package-data]
"pywwise" = ["**/*.py"]