-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (57 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
73 lines (57 loc) · 1.34 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
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ['setuptools', 'setuptools_scm']
build-backend = 'setuptools.build_meta'
[project]
name = 'acmebot'
description = 'ACME protocol automatic certitificate manager'
readme = 'README.rst'
requires-python = '>= 3.8'
dependencies = [
'appdirs >= 1.4.3, < 2.0.0',
'pyparsing >= 2.2.0, < 3.2.0',
'packaging >= 16.8',
'pyOpenSSL >= 17.5.0',
'py3dns >= 3.1.0, < 5.0.0',
'cryptography >= 2.6.1',
'asn1crypto >= 0.24.0, < 2.0.0',
'acme >= 2.0.0, < 4.0.0',
'PyYAML >= 3.1, < 7.0.0',
'josepy >=1.0.0, < 2.0.0',
]
dynamic = ['version']
[[project.authors]]
name = 'Peter Linss'
email = 'peter@linss.com'
[project.urls]
homepage = 'https://acmebot.org'
[project.scripts]
acmebot = "acmebot:run"
[project.optional-dependencies]
dev = [
'types-PyYAML',
'mypy',
'flake8',
'flake8-annotations',
'flake8-bandit',
'flake8-bugbear',
'flake8-commas',
'flake8-comprehensions',
'flake8-continuation',
'flake8-datetimez',
'flake8-docstrings',
'flake8-import-order',
'flake8-literal',
'flake8-modern-annotations',
'flake8-noqa',
'flake8-pyproject',
'flake8-requirements',
'flake8-typechecking-import',
'flake8-use-fstring',
'pep8-naming',
]
[tool.setuptools_scm]
[tool.flake8]
ignore = ['D107', 'D401', 'W503', 'ANN002', 'ANN003', 'ANN101', 'ANN102', 'ANN401', 'FS003', 'S110']
max-line-length = 120
[tool.mypy]
mypy_path = 'stubs'