-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
authors = ["Idein Inc."]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
description = "actfw's additional components using GStreamer"
keywords = ['actcast']
license = "MIT"
name = "actfw-gstreamer"
readme = "README.md"
repository = "https://github.com/Idein/actfw-gstreamer"
version = "0.4.0"
[tool.poetry.dependencies]
python = "^3.7"
Pillow = ">=8, <11"
PyGObject = "^3"
actfw-core = "^2.0.0"
result = "^0.6.0"
[tool.poetry.dev-dependencies]
Sphinx = "^4.3.0"
numpy = [
{ version = "^1.21.3", python = ">=3.7,<3.11" },
{ version = "^1.26.0", python = ">=3.11" },
]
pyproject-indirect-import-detector = "^0.1.1"
pysen = { version = "^0.10.1" }
pytest = "^6.2.3"
sphinx-theme = "^1.0"
black = "^23"
flake8 = "3.9.2"
flake8-bugbear = "21.9.2"
isort = "5.1.4"
mypy = "^1"
types-setuptools = "^69"
types-Pillow = ">=5"
[tool.poetry.urls]
"Repository" = "https://github.com/Idein/actfw-gstreamer"
"Documentation" = "https://idein.github.io/actfw-gstreamer/latest/"
"Changelog" = "https://github.com/Idein/actfw-gstreamer/blob/master/CHANGELOG.md"
[tool.pysen]
version = "0.10"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 128
py_version = "py38"
[[tool.pysen.lint.mypy_targets]]
paths = ["."]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]