-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.18 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
48
[tool.poetry]
name = "motionpicture"
version = "0.3.2"
description = "Make animations with Python"
authors = ["Gabriele Bozzola <[email protected]>"]
maintainers = ["Gabriele Bozzola <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/sbozzolo/motionpicture"
repository = "https://github.com/sbozzolo/motionpicture"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/sbozzolo/motionpicture/issues"
[tool.poetry.dependencies]
python = ">3.6.2"
ffmpeg-python = ">=0.1.0, ^0"
ConfigArgParse = "^1.0.0"
tqdm = "^4.0.0"
python-magic = "^0.4.27"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = "^6.2.1"
pytest-cov = "^2.10.1"
# Older NumPy version do not support Python 3.10, so we have to install it (for
# matplotlib, which is only needed to make plots in the README)
numpy = [
{ version = "^1.18.5", python = ">=3.6, <3.10" },
{ version = "^1.21.4", python = ">=3.10" },
]
matplotlib = "^3.3.3"
[tool.poetry.scripts]
mopi = "motionpicture.mopi:main"
[tool.black]
line-length = 89
exclude = '''
/(
\.git
| docs
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"