-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathpyproject.toml
71 lines (66 loc) · 1.71 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
[tool.poetry]
name = "selene"
version = "2.0.0a36"
description = "User-oriented browser tests in Python (Selenide port)"
authors = ["Iakiv Kramarenko <yashaka@gmail.com>"]
license = "MIT"
readme = "README.md"
keywords = [
"testing",
"selenium",
"selenide",
"browser",
"pageobject",
"widget",
"wrapper"
]
homepage = "http://github.com/yashaka/selene/"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Testing",
]
packages = [
{include = "selene"},
{include = "selene/api"},
{include = "selene/common"},
{include = "selene/core"},
{include = "selene/support"},
{include = "selene/support/shared"},
{include = "selene/support/conditions"},
]
[tool.poetry.dependencies]
python = "^3.7"
selenium = "==3.141.0"
future = "*"
webdriver-manager = "==2.3.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pycodestyle = "*"
pylint = "^2.7.2"
pytest = "*"
pytest-cov = "*"
codecov = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"selene/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "master"
build_command = "pip install -m poetry && poetry build"
[tool.black]
line-length = 79
target-version = ['py37']
skip-string-normalization = 1