-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.04 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
[tool.poetry]
name = "inver-synth"
version = "0.1.0"
description = "A Python implementation of the InverSynth method (Barkan, Tsiris, Koenigstein, Katz)"
authors = ["crodriguez1a <https://github.com/crodriguez1a>", "mo-seph <https://github.com/mo-seph>"]
[tool.poetry.dependencies]
python = "^3.7"
taskipy = "^1.2.1"
synthplayer = "^2.4"
python-dotenv = "^0.14.0"
pandas = "^1.0.5"
librosa = "^0.7.2"
numba = "0.48"
kapre = "^0.1.7"
tensorflow = "2.1.0"
tensorflow-estimator = "2.1.0"
matplotlib = "^3.2.2"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^5.0.9"
mypy = "^0.782"
flake8 = "^3.8.3"
autoflake = "^1.3.1"
pytest = "^5.4.3"
[tool.taskipy.tasks]
test = "python -m pytest"
clean = "flake8 models/ generators/ tests/ & black models/ generators/ tests/ & isort ."
start = "python -m tasks.start"
generate = "python -m generators.fm_generator"
[tool.isort]
multi_line_output=6
include_trailing_comma="True"
force_grid_wrap=0
use_parentheses="True"
line_length=120
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"