-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.23 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
[tool.poetry]
name = "think-dsp"
version = "0.2.1"
description = "DSP utilities from the Think DSP book"
authors = ["Allen Downey <allen.downey@olin.edu>"]
maintainers = ["Kim Maxim <maksimkim005@gmail.com>"]
readme = "README.md"
license = "MIT"
packages = [{ include = "thinkdsp" }]
include = ["LICENSE"]
exclude = ["book", "code", ".devcontainer", ".github"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
numpy = ">=1.22.4,<3.0"
scipy = ">=1.13.0,<2.0"
matplotlib = ">=3.8.0,<4.0"
jupyter = { version = "^1.0.0", optional = true }
pandas = { version = "^1.1.4", optional = true }
seaborn = { version = "^0.11.0", optional = true }
[tool.poetry.extras]
notebooks = ["jupyter", "pandas", "seaborn"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.black]
line-length = 88
target-version = ["py39"]