-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.16 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
[tool.poetry]
name = "pytest-rocketchat"
version = "1.1.1"
description = "Pytest to Rocket.Chat reporting plugin"
authors = ["Aleksandr Kotlyar <ask.kotlyar@gmail.com>"]
license = "MIT license"
readme = "README.md"
keywords = ['pytest', 'py.test', 'rocketchat']
homepage = "http://github.com/aleksandr-kotlyar/pytest-rocketchat"
packages = [{ include = "pytest_rocketchat" }]
classifiers = [
'Framework :: Pytest',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
[tool.poetry.plugins]
pytest11 = { pytest-rocketchat = 'pytest_rocketchat.plugin' }
[tool.poetry.dependencies]
python = "^3.6"
requests = "*"
rocketchat-API = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"pytest_rocketchat/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "master"
build_command = "pip install -m poetry && poetry build"