-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (44 loc) · 1.22 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "quantumaudio"
version = "0.1.0"
authors = [
{name = "Moth Quantum and collaborators", email = "[email protected]"},
]
description = """A Python package for building Quantum Representations of Digital Audio. Developed by Moth Quantum.
"""
readme = "README.md"
requires-python = ">=3.9"
keywords = ["audio","quantum computing","signal processing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"qiskit",
"qiskit_aer==0.13.3",
"numpy",
"bitstring",
"matplotlib",
"pylatexenc",
"tqdm",
"packaging"
]
[project.urls]
Homepage = "https://mothquantum.com"
Repository = "https://github.com/moth-quantum/quantum-audio"
Documentation = "https://quantumaudio.readthedocs.io/"
[project.optional-dependencies]
demos = [
"soundfile==0.12.1",
"librosa==0.10.2.post1",
"ipywidgets"
]