-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (32 loc) · 895 Bytes
/
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
[tool.poetry]
name = "pytest-minecraft"
version = "0.2.0"
description = "A pytest plugin for running tests against Minecraft releases"
authors = ["Valentin Berlier <berlier.v@gmail.com>"]
license = "MIT"
homepage = "https://github.com/vberlier/pytest-minecraft"
repository = "https://github.com/vberlier/pytest-minecraft"
documentation = "https://github.com/vberlier/pytest-minecraft"
readme = "README.md"
keywords = [
"pytest-plugin",
"minecraft",
"datapack",
"resourcepack",
"testing"
]
classifiers = ["Framework :: Pytest"]
[tool.poetry.dependencies]
python = "^3.8"
pytest = ">=6.0.1"
requests = ">=2.24.0"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
[tool.poetry.plugins.pytest11]
minecraft = "pytest_minecraft"
[tool.black]
target-version = ["py38"]
include = "pytest_minecraft|tests"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"