-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.47 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
[build-system]
requires = [
"setuptools>=61.0",
"robotframework>=7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "robotframework-dependencysolver"
dynamic = ["version"]
dependencies = [
"robotframework>=5.0",
"robotframework-dependencylibrary>=4.0",
]
requires-python = ">=3.10"
authors = [
{ name="Joonas Kuisma", email="kuisma.joonas@gmail.com" },
]
description="A Robot Framework prerunmodifier for interdependent test cases execution."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["robotframework", "dependencysolver", "dependencylibrary", "prerunmodifier, testautomation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"robotframework-pabot>=4.1",
]
pabot = [
"robotframework-pabot>=4.1",
]
[project.scripts]
depsol = "DependencySolver.run:main"
[project.urls]
Homepage = "https://github.com/joonaskuisma/robotframework-dependencysolver"
Issues = "https://github.com/joonaskuisma/robotframework-dependencysolver/issues"
Download = "https://pypi.org/project/robotframework-dependencysolver/"
[tool.setuptools.dynamic]
version = {attr = "DependencySolver._version.__version__"}