-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (50 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
60 lines (50 loc) · 1.28 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>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chronogen"
version = "1.0.1"
description = "Generate customizable date wordlists."
readme = "README.md"
authors = [{ name = "William Le Roux" }]
license = "LGPL-3.0-only"
license-files = ["LICENSE"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/Septimus4/Chronogen"
Documentation = "https://github.com/Septimus4/Chronogen/tree/main/docs"
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
"ruff>=0.5.0",
"build>=1.2.2",
]
[project.scripts]
chronogen = "chronogen.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra --strict-markers --strict-config --cov=chronogen --cov-report=term-missing"
testpaths = ["tests"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.coverage.run]
branch = true
source = ["chronogen"]
omit = [
"tests/*",
]