File: pyproject.toml

package info (click to toggle)
python-pyo 1.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,332 kB
  • sloc: python: 135,133; ansic: 127,822; javascript: 16,116; sh: 395; makefile: 388; cpp: 242
file content (98 lines) | stat: -rw-r--r-- 3,249 bytes parent folder | download | duplicates (2)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "pyo"
version = "1.0.6"
authors = [{name = "Olivier Belanger", email = "belangeo@gmail.com"}]
description = "Python module to build digital signal processing program."
readme = "README.md"
requires-python = ">=3.9, <4"
keywords = ["audio", "sound", "dsp", "synthesis", "signal-processing", "music"]
license = {text = "LGPLv3+"}
classifiers = [
    # How mature is this project? Common values are
    #   3 - Alpha
    #   4 - Beta
    #   5 - Production/Stable
    "Development Status :: 5 - Production/Stable",
    # Indicate who your project is intended for
    "Intended Audience :: Developers",
    "Intended Audience :: End Users/Desktop",
    "Intended Audience :: Science/Research",
    "Intended Audience :: Other Audience",
    # Operating systems
    "Operating System :: MacOS :: MacOS X",
    "Operating System :: Microsoft :: Windows",
    "Operating System :: POSIX :: Linux",
    # Pick your license as you wish (should match "license" above)
    "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
    # Topics
    "Topic :: Multimedia :: Sound/Audio",
    "Topic :: Multimedia :: Sound/Audio :: Analysis",
    "Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
    "Topic :: Multimedia :: Sound/Audio :: Sound Synthesis",
    # Specify the Python versions you support here. In particular, ensure
    # that you indicate whether you support Python 2, Python 3 or both.
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13"
]

[project.urls]
Homepage = "https://github.com/belangeo/pyo"
Documentation = "https://belangeo.github.io/pyo/"
Repository = "https://github.com/belangeo/pyo"
Changelog = "https://github.com/belangeo/pyo/blob/master/ChangeLog"


[tool.setuptools]
packages = [
    "pyo64",
    "pyo",
    "pyo.lib",
    "pyo.lib.snds",
    "pyo.editor",
    "pyo.editor.styles",
    "pyo.editor.snippets",
    "pyo.editor.snippets.Audio",
    "pyo.editor.snippets.Control",
    "pyo.editor.snippets.Interface",
    "pyo.editor.snippets.Utilities",
    "pyo.examples",
    "pyo.examples.x01-intro",
    "pyo.examples.x02-controls",
    "pyo.examples.x03-generators",
    "pyo.examples.x04-soundfiles",
    "pyo.examples.x05-envelopes",
    "pyo.examples.x06-filters",
    "pyo.examples.x07-effects",
    "pyo.examples.x08-dynamics",
    "pyo.examples.x09-callbacks",
    "pyo.examples.x10-tables",
    "pyo.examples.x16-midi",
    "pyo.examples.x17-osc",
    "pyo.examples.x19-multirate",
    "pyo.examples.x20-multicore",
    "pyo.examples.x21-utilities",
    "pyo.examples.x22-events",
    "pyo.examples.x23-expression",
    "pyo.examples.snds",
    "pyo.examples.algorithmic",
    "pyo.examples.fft",
    "pyo.examples.matrix",
    "pyo.examples.sampling",
    "pyo.examples.sequencing",
    "pyo.examples.synthesis",
    "pyo.examples.wxgui"
]

[tool.setuptools.package-data]
"*" = ["*.wav", "*.aif", "*.mid", ".expr", "*"]

[project.scripts]
epyo = "pyo.editor.EPyo:main"