|
1 | 1 | [tool.poetry] |
2 | | -name = "thinkdsp" |
3 | | -version = "0.1.0" |
4 | | -description = "" |
| 2 | +name = "thinkdsp-kim" |
| 3 | +version = "0.1.1" |
| 4 | +description = "DSP utilities from the Think DSP book" |
5 | 5 | authors = ["Allen Downey <allen.downey@olin.edu>"] |
| 6 | +maintainers = ["Kim Maxim <maksimkim005@gmail.com>"] |
| 7 | +readme = "README.md" |
| 8 | +license = "MIT" |
| 9 | +packages = [{ include = "thinkdsp", from = "src" }] |
| 10 | +include = ["LICENSE"] |
| 11 | +exclude = ["book", "code", ".devcontainer", ".github"] |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 3 - Alpha", |
| 14 | + "Intended Audience :: Education", |
| 15 | + "License :: OSI Approved :: MIT License", |
| 16 | + "Programming Language :: Python :: 3", |
| 17 | + "Programming Language :: Python :: 3 :: Only", |
| 18 | + "Topic :: Multimedia :: Sound/Audio :: Analysis", |
| 19 | + "Topic :: Scientific/Engineering :: Mathematics", |
| 20 | +] |
6 | 21 |
|
7 | 22 | [tool.poetry.dependencies] |
8 | | -python = "^3.8" |
9 | | -jupyter = "^1.0.0" |
10 | | -numpy = "^1.19.4" |
11 | | -matplotlib = "^3.3.3" |
12 | | -seaborn = "^0.11.0" |
13 | | -pandas = "^1.1.4" |
14 | | -scipy = "^1.5.4" |
| 23 | +python = ">=3.9,<4.0" |
| 24 | +numpy = ">=1.22.4,<3.0" |
| 25 | +scipy = ">=1.13.0,<2.0" |
| 26 | +matplotlib = ">=3.8.0,<4.0" |
| 27 | +jupyter = { version = "^1.0.0", optional = true } |
| 28 | +pandas = { version = "^1.1.4", optional = true } |
| 29 | +seaborn = { version = "^0.11.0", optional = true } |
15 | 30 |
|
16 | | -[tool.poetry.dev-dependencies] |
| 31 | +[tool.poetry.extras] |
| 32 | +notebooks = ["jupyter", "pandas", "seaborn"] |
| 33 | + |
| 34 | +[tool.poetry.group.dev.dependencies] |
| 35 | +pytest = "^7.0" |
17 | 36 |
|
18 | 37 | [build-system] |
19 | | -requires = ["poetry>=0.12"] |
20 | | -build-backend = "poetry.masonry.api" |
| 38 | +requires = ["poetry-core>=1.0.0"] |
| 39 | +build-backend = "poetry.core.masonry.api" |
0 commit comments