-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (66 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "cofferfile"
version = "0.0.9"
requires-python = ">= 3.9"
readme = "README.md"
description = "A python xxxFile like (ie GzipFile, BZ2File, ...) for manipulating encrypted files (Fernet, Nacl, ...)."
authors = [
{name = "bibi21000", email = "[email protected]"},
]
maintainers = [
{name = "bibi21000", email = "[email protected]"}
]
packages = ["cofferfile"]
dependencies = [
'importlib_metadata == 4.6.4; python_version < "3.10"',
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = ["pytest", "coverage[toml]", "pytest-cov", "pytest-xdist", 'pytest-mock', "pytest-random-order", "ruff", "bandit"]
build = ["build", 'twine']
store = ["pyzstd", "filelock"]
cli = ["pyzstd", "filelock", "click"]
benchmark = ["pytest-ordering"]
doc = ["pdoc"]
[project.urls]
HomePage = "https://github.com/bibi21000/CofferFile"
Issues = "https://github.com/bibi21000/CofferFile/issues"
Changelog = "https://github.com/bibi21000/CofferFile/blob/master/CHANGELOG.md"
Documentation = "https://bibi21000.github.io/CofferFile/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"/cofferfile",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
# addopts = "--cov=cofferfile --cov-report xml --junitxml=junit.xml"
addopts = "--cov=cofferfile --durations=0 --capture=sys --cov-report html --junitxml=junit.xml"
[tool.coverage.run]
source = ['cofferfile']
omit = ['tests']
[tool.coverage.paths]
source = ['cofferfile']
[tool.bandit]
exclude_dirs = ["tests", "venv"]