-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (61 loc) · 1.61 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
[build-system]
requires = ['setuptools', 'setuptools_scm']
build-backend = 'setuptools.build_meta'
[project]
name = 'uri-template'
description = 'RFC 6570 URI Template Processor'
readme = 'README.md'
requires-python = '>= 3.7'
keywords = ['config']
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = []
dynamic = ['version']
[[project.authors]]
name = 'Peter Linss'
email = 'pypi@linss.com'
[project.urls]
homepage = 'https://gitlab.linss.com/open-source/python/uri-template'
[project.license]
text = 'MIT License'
[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-keyword-paramaters',
'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']
max-line-length = 120
[tool.mypy]
mypy_path = 'stubs'