-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (52 loc) · 1.7 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
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "swagger-coverage-tool"
version = "0.33.0"
description = "A tool for measuring API test coverage based on Swagger"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [
{ name = "Nikita Filonov", email = "filonov.nikitkaa@gmail.com" }
]
maintainers = [
{ name = "Nikita Filonov", email = "filonov.nikitkaa@gmail.com" }
]
keywords = ["swagger", "coverage", "testing", "api", "openapi"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance"
]
requires-python = ">=3.11"
dependencies = [
"click",
"httpx",
"pyyaml",
"pydantic",
"pydantic-settings",
"requests"
]
[project.urls]
Homepage = "https://github.com/Nikita-Filonov/swagger-coverage-tool"
Repository = "https://github.com/Nikita-Filonov/swagger-coverage-tool"
Issues = "https://github.com/Nikita-Filonov/swagger-coverage-tool/issues"
[project.scripts]
swagger-coverage-tool = "swagger_coverage_tool.cli.main:cli"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["swagger_coverage_tool*"]
[tool.setuptools.package-data]
"swagger_coverage_tool" = ["config.py"]
"swagger_coverage_tool.cli" = ["**/*"]
"swagger_coverage_tool.src" = ["**/*"]