-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (52 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = [
"hatch-vcs>=0.3",
"hatchling>=1.12.2",
]
build-backend = "hatchling.build"
[project]
name = "defected"
authors = [
{name = "Hervé Beraud", email = "[email protected]"},
]
description = "Detect suspicious behaviors in git repos and open-source projects."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Topic :: Software Development",
"Topic :: Security",
"Topic :: Sociology",
]
dynamic = ["version"]
dependencies = [
"pandas",
"timezonefinder",
]
[project.urls]
Homepage = "https://github.com/4383/defected"
History = "https://github.com/4383/defected/blob/main/CHANGELOG.md"
Sponsor = "https://github.com/sponsors/4383"
Tracker = "https://github.com/4383/defected/issues"
Source = "https://github.com/4383/defected"
[project.scripts]
defected = "defected.main:main"
[project.optional-dependencies]
dev = ["black", "isort", "pip-tools", "build", "twine", "pre-commit", "commitizen"]
[options.packages.find]
where = "defected"
exclude = "tests*"
[tool.hatch]
version.source = "vcs"
[tool.isort]
profile = "black"