forked from Teemu/pytest-sugar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (44 loc) · 1.38 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
[tool.poetry]
name = "pytest-sugar"
version = "0.9.7"
description = "Pytest plugin that adds a progress bar and other visual enhancements"
authors = ["Teemu <[email protected]>", "Janne Vanhala <[email protected]>"]
license = "BSD"
readme = "README.md"
keywords = ["testing", "pytest", "plugin"]
repository = "https://github.com/Teemu/pytest-sugar"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[tool.poetry.urls]
"Tracker" = "https://github.com/Teemu/pytest-sugar/issues"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pytest = ">=6.2.0"
termcolor = ">=2.1.0"
packaging = ">=21.3"
[tool.poetry.dev-dependencies]
black = "^23.0"
flake8 = "^3.9"
isort = "^5.12"
[tool.autopub]
project-name = "pytest-sugar"
git-username = "botpub"
git-email = "[email protected]"
append-github-contributor = true
changelog-file = "CHANGES.rst"
changelog-header = "---------"
version-header = "^"
version-strings = ["pytest_sugar.py"]
tag-prefix = "v"
build-system = "setuptools"
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]