|
1 | | -[tool.poetry] |
2 | | -name = "failures-analysis" |
3 | | -version = "1.1.0" |
4 | | -description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation." |
5 | | -authors = ["Tatu Aalto"] |
6 | | -license = "Apache-2.0" |
7 | | -readme = "README.md" |
8 | | -homepage = "https://github.com/F-Secure/failures-analysis" |
9 | | -classifiers = [ |
10 | | - "Development Status :: 3 - Alpha", |
11 | | - "Programming Language :: Python :: 3", |
12 | | - "Programming Language :: Python :: 3.8", |
13 | | - "Programming Language :: Python :: 3.9", |
14 | | - "Programming Language :: Python :: 3.10", |
15 | | - "License :: OSI Approved :: Apache Software License", |
16 | | - "Operating System :: OS Independent", |
17 | | - "Topic :: Software Development :: Testing", |
18 | | -] |
19 | | -packages = [ |
20 | | - { include = "failure_analysis", from="."} |
21 | | -] |
22 | | - |
23 | | -[tool.poetry.scripts] |
24 | | -failures-analysis = "failure_analysis.failure_analysis:main" |
25 | | - |
26 | | -[tool.poetry.urls] |
27 | | -"Change log" = "https://github.com/F-Secure/failures-analysis/blob/main/CHANGELOG.md" |
28 | | - |
29 | | -[tool.poetry.dependencies] |
30 | | -python = "^3.8" |
31 | | -numpy = "^1.22.4" |
32 | | -pandas = "^1.4.2" |
33 | | -sklearn = "^0.0" |
34 | | -lxml = "^4.9.0" |
35 | | -drain3 = "^0.9.10" |
36 | | - |
37 | | -[tool.poetry.dev-dependencies] |
38 | | -pytest = "^7.1.2" |
39 | | -black = "^22.3.0" |
40 | | -isort = "^5.10.1" |
41 | | -invoke = "^1.7.1" |
42 | | -mypy = "^0.961" |
43 | | -flake8 = "^4.0.1" |
44 | | -python-semantic-release = "7.28.1" |
45 | | -approvaltests = "^5.2.0" |
46 | | - |
47 | | -[build-system] |
48 | | -requires = ["poetry-core>=1.0.0"] |
49 | | -build-backend = "poetry.core.masonry.api" |
50 | | - |
51 | | -[tool.black] |
52 | | -line-length = 120 |
53 | | -target-version = ['py38'] |
54 | | - |
55 | | -[tool.semantic_release] |
56 | | -version_toml = [ |
57 | | - "pyproject.toml:tool.poetry.version", |
58 | | - "failure_analysis/__init__.py:__version__" |
59 | | -] |
60 | | -branch = "main" |
61 | | -build_command = "poetry build" |
| 1 | +[tool.poetry] |
| 2 | +name = "failures-analysis" |
| 3 | +version = "2.0.0" |
| 4 | +description = " failures-analysis package provides fast and reliable way to find and group similar failures in test automation." |
| 5 | +authors = ["Tatu Aalto"] |
| 6 | +license = "Apache-2.0" |
| 7 | +readme = "README.md" |
| 8 | +homepage = "https://github.com/F-Secure/failures-analysis" |
| 9 | +classifiers = [ |
| 10 | + "Development Status :: 3 - Alpha", |
| 11 | + "Programming Language :: Python :: 3", |
| 12 | + "Programming Language :: Python :: 3.8", |
| 13 | + "Programming Language :: Python :: 3.9", |
| 14 | + "Programming Language :: Python :: 3.10", |
| 15 | + "License :: OSI Approved :: Apache Software License", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Topic :: Software Development :: Testing", |
| 18 | +] |
| 19 | +packages = [ |
| 20 | + { include = "failure_analysis", from="."} |
| 21 | +] |
| 22 | + |
| 23 | +[tool.poetry.scripts] |
| 24 | +failures-analysis = "failure_analysis.failure_analysis:main" |
| 25 | + |
| 26 | +[tool.poetry.urls] |
| 27 | +"Change log" = "https://github.com/F-Secure/failures-analysis/blob/main/CHANGELOG.md" |
| 28 | + |
| 29 | +[tool.poetry.dependencies] |
| 30 | +python = "^3.8" |
| 31 | +numpy = "^1.22.4" |
| 32 | +pandas = "^1.4.2" |
| 33 | +sklearn = "^0.0" |
| 34 | +lxml = "^4.9.0" |
| 35 | +drain3 = "^0.9.10" |
| 36 | + |
| 37 | +[tool.poetry.dev-dependencies] |
| 38 | +pytest = "^7.1.2" |
| 39 | +black = "^22.3.0" |
| 40 | +isort = "^5.10.1" |
| 41 | +invoke = "^1.7.1" |
| 42 | +mypy = "^0.961" |
| 43 | +flake8 = "^4.0.1" |
| 44 | +python-semantic-release = "7.28.1" |
| 45 | +approvaltests = "^5.2.0" |
| 46 | + |
| 47 | +[build-system] |
| 48 | +requires = ["poetry-core>=1.0.0"] |
| 49 | +build-backend = "poetry.core.masonry.api" |
| 50 | + |
| 51 | +[tool.black] |
| 52 | +line-length = 120 |
| 53 | +target-version = ['py38'] |
| 54 | + |
| 55 | +[tool.semantic_release] |
| 56 | +version_toml = [ |
| 57 | + "pyproject.toml:tool.poetry.version", |
| 58 | + "failure_analysis/__init__.py:__version__" |
| 59 | +] |
| 60 | +branch = "main" |
| 61 | +build_command = "poetry build" |
0 commit comments