-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.22 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
[build-system]
requires = ["setuptools>=61.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest_deduplicate"
version = "0.1.6"
description = "Identifies duplicate unit tests"
authors = [
{name = "xor2003", email = "[email protected]"},
]
dependencies = ["pytest","coverage"]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "GPL"}
keywords = ["duplicate test detection","test optimization", "test efficiency"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Testing :: Unit",
"Operating System :: OS Independent",
"Topic :: Software Development :: Quality Assurance"
]
[project.urls]
Homepage = "https://github.com/xor2003/pytest_deduplicate"
[tool.distutils.egg_info]
tag-build = ""
tag-date = 0
[tool.setuptools]
include-package-data = false
[project.scripts]
pytest_deduplicate = "pytest_deduplicate:main"