|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "ui-coverage-tool" |
| 7 | +version = "0.32.0" |
| 8 | +description = "UI Coverage Tool is an innovative, no-overhead solution for tracking and visualizing UI test coverage — directly on your actual application, not static snapshots." |
| 9 | +readme = { file = "README.md", content-type = "text/markdown" } |
| 10 | +license = { file = "LICENSE" } |
| 11 | +authors = [ |
| 12 | + { name = "Nikita Filonov", email = "filonov.nikitkaa@gmail.com" } |
| 13 | +] |
| 14 | +maintainers = [ |
| 15 | + { name = "Nikita Filonov", email = "filonov.nikitkaa@gmail.com" } |
| 16 | +] |
| 17 | +keywords = [ |
| 18 | + "python", |
| 19 | + "coverage", |
| 20 | + "ui-coverage", |
| 21 | + "ui-testing", |
| 22 | + "test-coverage", |
| 23 | + "frontend-testing", |
| 24 | + "visual-testing", |
| 25 | + "automation", |
| 26 | + "qa", |
| 27 | + "quality-assurance", |
| 28 | + "reporting", |
| 29 | + "html-report", |
| 30 | + "pytest", |
| 31 | + "selenium", |
| 32 | + "playwright", |
| 33 | + "web-testing", |
| 34 | + "test-analytics" |
| 35 | +] |
| 36 | +classifiers = [ |
| 37 | + "Programming Language :: Python :: 3", |
| 38 | + "Programming Language :: Python :: 3.11", |
| 39 | + "Programming Language :: Python :: 3.12", |
| 40 | + "License :: OSI Approved :: MIT License", |
| 41 | + "Operating System :: OS Independent", |
| 42 | + "Intended Audience :: Developers", |
| 43 | + "Topic :: Software Development :: Testing", |
| 44 | + "Topic :: Software Development :: Quality Assurance" |
| 45 | +] |
| 46 | +requires-python = ">=3.11" |
| 47 | + |
| 48 | +dependencies = [ |
| 49 | + "click==8.1.8", |
| 50 | + "pyyaml==6.0.2", |
| 51 | + "pydantic==2.11.3", |
| 52 | + "pydantic-settings==2.8.1" |
| 53 | +] |
| 54 | + |
| 55 | +[project.urls] |
| 56 | +Homepage = "https://github.com/Nikita-Filonov/ui-coverage-tool" |
| 57 | +Repository = "https://github.com/Nikita-Filonov/ui-coverage-tool" |
| 58 | +Issues = "https://github.com/Nikita-Filonov/ui-coverage-tool/issues" |
| 59 | + |
| 60 | +[project.scripts] |
| 61 | +ui-coverage-tool = "ui_coverage_tool.cli.main:cli" |
| 62 | + |
| 63 | +[project.optional-dependencies] |
| 64 | +test = ["pytest", "pytest-cov"] |
| 65 | + |
| 66 | +[tool.setuptools] |
| 67 | +include-package-data = true |
| 68 | + |
| 69 | +[tool.setuptools.packages.find] |
| 70 | +where = ["."] |
| 71 | +include = ["ui_coverage_tool*"] |
| 72 | + |
| 73 | +[tool.setuptools.package-data] |
| 74 | +"ui_coverage_tool" = ["config.py"] |
| 75 | +"ui_coverage_tool.cli" = ["**/*"] |
| 76 | +"ui_coverage_tool.src" = ["**/*"] |
0 commit comments