-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.03 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
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "emacs-vhdl-formatter"
description = "Format your VHDL files with emacs"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "Thierry Delafontaine", email = "deaa@zhaw.ch"},
]
keywords = [
"automation",
"emacs",
"formatter",
"vhdl",
"vhdl-mode",
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
dynamic = ["version"]
[project.scripts]
emacs-vhdl-formatter = "pre_commit_hooks.emacs_vhdl_formatter:main"
[project.urls]
homepage = "https://github.com/InES-HPMM/pre-commit-emacs-vhdl-formatter"
[tool.setuptools_scm]
write_to = "pre_commit_hooks/_version.py"
[tool.black]
line-length = 80
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.mypy]
mypy_path = "pre_commit_hooks"
strict = true
[tool.pydocstyle]
convention = "google"