-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
126 lines (112 loc) · 2.54 KB
/
setup.cfg
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[metadata]
name = age
version = attr: age.__version__
description = Actually good encryption. In Python.
long_description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
author = Jonas Lieb
url = https://github.com/jojonas/pyage
project-urls =
Repository=https://github.com/jojonas/pyage
Documentation=https://pyage.readthedocs.io/
Specification=https://age-encryption.org/
license = MIT
license-file = LICENSE
platforms = any
keywords = age encryption privacy experimental
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Environment :: Console
Topic :: Security :: Cryptography
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
package_dir=
=src
packages = find:
install_requires =
setuptools>=38.3
pynacl>=1.4
cryptography>=2.7
bcrypt>=3.1
click>=7.1
requests>=2.24
python_requires = >= 3.6, <4
[options.packages.find]
where = src
exclude =
*_test
[options.extras_require]
dev =
black
flake8
mypy
isort
versioneer
types-requests
test =
pytest
pyfakefs
coverage
pytest-cov
docs =
sphinx
doc8
sphinx-autodoc-typehints
sphinxcontrib-programoutput
[options.entry_points]
console_scripts =
pyage = age.cli:main
[flake8]
ignore = E501, W503, E203
max-line-length = 100
max-complexity = 18
select = B,C,E,F,W,T4,B9
exclude =
build
dist
versioneer.py
[mypy]
ignore_missing_imports = True
warn_unreachable = True
strict_equality = True
[mypy-versioneer]
ignore_errors = True
[mypy-age._version]
ignore_errors = True
[isort]
line_length = 100
multi_line_output = 3
include_trailing_comma = True
use_parentheses = True
skip=versioneer.py,src/age/__init__.py,src/age/version.py
[versioneer]
VCS = git
style = pep440
versionfile_source = src/age/_version.py
versionfile_build = age/_version.py
tag_prefix = v
parentdir_prefix = age-
[tool:pytest]
addopts = --cov=age --doctest-modules -W ignore::DeprecationWarning
[coverage:run]
branch = True
omit =
*_test.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
raise NotImplementedError
[build_sphinx]
source-dir = doc/source
build_dir = doc/build