-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.28 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
46
47
[project]
name = "pie-audio"
version = "0.1.0"
description = "A simple audio editor"
authors = [
{name = "Ivanov Cyril", email = "woah.npc@yandex.ru"}
]
license = { text = "GPLv2+" }
readme = "README.md"
keywords = [
"Qt", "PySide", "PySide6",
"audio", "media", "converter",
"audio-converter", "experimental",
"plugins", "plug-ins"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Environment :: X11 Applications :: Qt",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Natural Language :: Russian",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
build = ["Nuitka==1.5.5"]
[project.scripts]
pie-audio = "pieapp.launcher:launch"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pieapp"]