This repository was archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (79 loc) · 2.26 KB
/
pyproject.toml
File metadata and controls
87 lines (79 loc) · 2.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tool.mypy]
python_version = "3.9"
exclude = "__init__.py"
strict = true
warn_return_any = false
allow_redefinition = false
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
local_partial_types = true
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.pyi?$'
[tool.isort]
py_version = 39
profile= "black"
src_paths = ["multibar", "tests", "examples"]
[tool.poetry]
name = "python-multibar"
version = "4.0.1"
description = "Flexible wrapper for static progressbar writing."
authors = ["DenyS <animatea.programming@gmail.com>"]
readme = "PYPI_README.md"
license = "Apache-2.0"
homepage = "https://github.com/Animatea/python-multibar"
repository = "https://github.com/Animatea/python-multibar"
documentation = "https://animatea.github.io/python-multibar/"
include = [
"LICENSE", "assets", "i18n",
]
keywords = [
"progressbar", "progress", "multibar", "python-multibar", "python", "python3", "progress bar", "utility"
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: Apache Software License",
"Typing :: Typed",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
packages = [
{ include = "multibar" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Animatea/python-multibar/issues"
"Documentation" = "https://animatea.github.io/python-multibar/"
[tool.poetry.dependencies]
python = "^3.9"
returns = "0.19.0"
termcolor = "2.0.0"
[tool.poetry.dev-dependencies]
flake8 = "5.0.4"
isort = "5.10.1"
pylint = "2.15.2"
black = "22.8.0"
mypy = "0.971"
pytest = "7.1.3"
behave = "1.2.6"
PyHamcrest = "2.0.4"
nox = "2022.8.7"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.core.masonry.api"