-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 984 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
#[project]
#name = "gitlab-precommit"
#description = "Gitlab precommit tools"
#readme = "README.md"
#requires-python = ">=3.7"
#keywords = ["gitlab", "shellcheck"]
#classifiers = [
# "Environment :: Console",
# "Development Status :: 4 - Beta",
# "Programming Language :: Python :: 3",
# "License :: OSI Approved :: MIT License",
#]
##dependencies = [
## "requests",
## 'importlib-metadata; python_version<"3.8"',
##]
#dynamic = ["version"]
#
#[project.urls]
#"Homepage" = "https://github.com/jacobdonenfeld/gitlab-linters"
[tool.black]
py36 = false
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/'''