-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.96 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
[tool.poetry]
name = "robotframework-pokemon"
version = "1.0.1"
description = "Unofficial fan project: Robot Framework keyword library for the pytemon Pokémon-inspired terminal game"
authors = ["Mark Moberts <markmoberts@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/MobyNL/robotframework-pokemon"
repository = "https://github.com/MobyNL/robotframework-pokemon"
keywords = ["robotframework", "pokemon", "game", "testing", "tui", "terminal"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Games/Entertainment :: Role-Playing",
"Topic :: Software Development :: Testing",
]
packages = [{include = "PokemonLibrary"}]
[tool.poetry.dependencies]
python = "^3.10"
robotframework = "^7.0"
robotframework-pythonlibcore = "^4.4.1"
pytemon = "^1.0.0"
[tool.poetry.group.dev.dependencies]
robotframework-tidy = "*"
robotcode = "^2.4.0"
pytest = "^8.0"
ruff = "^0.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# ---------------------------------------------------------------------------
# Ruff — linting + formatting
# ---------------------------------------------------------------------------
[tool.ruff]
target-version = "py39"
line-length = 100
src = ["PokemonLibrary"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "B", "UP", "N", "C4", "RUF"]
ignore = [
"E501",
"B008",
"RUF012",
"UP006",
"UP007",
"UP035",
]
[tool.ruff.lint.isort]
known-first-party = ["PokemonLibrary", "pytemon"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"