forked from karar-hayder/Replicheck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "replicheck"
version = "0.1.0"
authors = [
{ name = "Karar Haider", email = "kararhaider.pro@gmail.com" },
]
description = "A tool for detecting code duplications in projects"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"tqdm>=4.66.2",
"tree_sitter>=0.20.4",
]
keywords = ["duplicate-code", "code-analysis", "static-analysis", "refactoring", "python"]
urls = { Homepage = "https://github.com/kararhaider/replicheck", Repository = "https://github.com/kararhaider/replicheck" }
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-cov>=4.1.0",
"black>=23.12.1",
"isort>=5.13.2",
]
[project.scripts]
replicheck = "replicheck.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--cov=replicheck"