-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (62 loc) · 1.36 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
[project]
name = "norma2"
description = "check c epitech coding style"
authors = [
{name = "Xavier Mitault", email = "xavier.mitault@epitech.eu"},
]
dependencies = [
"markdown>=3.4.1",
"regex>=2022.9.13",
"rich>=12.6.0",
"rich-argparse>=0.3.1",
"shtab>=1.5.7",
"igittigitt>=2.1.2",
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Programming Language :: C",
"Topic :: Software Development :: Quality Assurance"
]
[project.scripts]
norma2 = "norma2.__main__:entrypoint"
[project.optional-dependencies]
[build-system]
requires = [
"pdm-pep517>=1.0.0",
"setuptools>=45",
"setuptools_scm[toml]>=6.2"
]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm.version]
source = "scm"
write_to = "norma2/__version__.py"
write_template = '__version__ = "{}"'
[tool.pdm.build]
includes = [
"norma2/",
]
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=2.20.0",
"black>=22.8.0",
"flake8>=5.0.4",
"pyright>=1.1.274",
"isort>=5.10.1",
"refurb>=1.3.0",
"scalene>=1.5.14",
"memray>=1.4.0",
"ruff>=0.0.100",
]
[tool.pdm.scripts]
norma2 = "python norma2"
[tool.pyright]
venvPath = "."
venv = ".venv"