-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpyproject.toml
76 lines (66 loc) · 1.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[tool.poetry]
name = "behaving"
version = "3.2.0"
description = "BDD Behavior-Driven-Development testing"
authors = ["Yiorgis Gozadinos <ggozadinos@gmail.com>",
"William Dutton <will.dutt@gmail.com>"]
maintainers = ["Yiorgis Gozadinos <ggozadinos@gmail.com>"]
license = "GPL"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = ["BDD", "Behavior-Driven-Development", "testing"]
repository = "https://github.com/ggozad/behaving"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9"
parse = ">=1.20.2"
behave = ">=1.2.6"
splinter = ">=0.21.0"
selenium = ">=4"
[tool.poetry.scripts]
mailmock = "behaving.mail.mock:main"
smsmock = "behaving.sms.mock:main"
gcmmock = "behaving.notifications.gcm.mock:main"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
black = "^24.10.0"
pdbpp = "^0.10.3"
[tool.ruff]
line-length = 88
# Enable Flake's "E" and "F" codes by default and "I" for sorting imports.
select = ["E", "F", "I"]
ignore = ["E501"]
# Exclude a variety of commonly ignored directories.
exclude = [
".direnv",
".eggs",
".git",
".mypy_cache",
".nox",
".ruff_cache",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
per-file-ignores = {"__init__.py"=["F401","F403"], "steps.py"=["F401","F403"],"css.py"=["E731"]}
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
# Assume Python 3.10.
target-version = "py310"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"