-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
50 lines (44 loc) · 1.36 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
[tool.poetry]
name = "pytest-sugar"
version = "1.0.0"
description = "Pytest plugin that adds a progress bar and other visual enhancements"
authors = ["Teemu <orkkiolento@gmail.com>", "Janne Vanhala <janne.vanhala@gmail.com>"]
license = "BSD-3-Clause"
readme = "README.md"
keywords = ["testing", "pytest", "plugin"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
[tool.poetry.urls]
Homepage = "https://github.com/Teemu/pytest-sugar"
"Issue 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"
[tool.poetry.dev-dependencies]
black = "^24.0"
flake8 = "^7.0"
isort = "^5.13"
[tool.autopub]
project-name = "pytest-sugar"
git-username = "botpub"
git-email = "52496925+botpub@users.noreply.github.com"
append-github-contributor = true
changelog-file = "CHANGES.rst"
changelog-header = "---------"
version-header = "^"
version-strings = ["pytest_sugar.py"]
tag-prefix = "v"
build-system = "setuptools"
[tool.isort]
profile = "black"
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]