-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
69 lines (61 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gpglib2"
dynamic = ["version"]
description = "A python3 compatible fork of gpglib, a Library for decrypting gpg that doesn't shell out to gpg"
readme = "README.rst"
license = "MIT"
requires-python = ">= 3.8"
authors = [
{ name = "Stephen Moore", email = "[email protected]" },
]
keywords = [
"decrypt",
"gpg",
]
dependencies = [
"bitstring==4.1.4",
"pycryptodome==3.19.1",
]
[project.optional-dependencies]
tests = [
"noseOfYeti[black]==2.4.3",
"pytest==7.4.3",
"pytest-helpers-namespace==2021.12.29",
]
[tool.hatch.version]
path = "gpglib/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/gpglib",
]
[tool.hatch.build.targets.wheel]
include = [
"/gpglib",
]
[tool.black]
line-length = 100
include = '\.py$'
exclude = '''
/(
\.git
| \.tox
| dist
| tools/\.python
)/
'''
[tool.isort]
profile = "black"
skip_glob = [
".git/*",
".tox/*",
"dist/*",
"tools/.*",
]
[tool.mypy]
plugins = 'noseOfYeti.plugins.mypy'
ignore_missing_imports = true
show_column_numbers = true
allow_redefinition = true