-
Notifications
You must be signed in to change notification settings - Fork 185
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.23 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
[tool.poetry]
name = "norminette"
version = "3.3.59"
description = "Open source C files linter for 42 Network campuses"
authors = ["42 <pedago@42.fr>"]
license = "MIT Licence"
readme = "README.md"
repository = "https://github.com/42School/norminette"
keywords = ["42", "norminette"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
include = [
"norminette/locale/**/LC_MESSAGES/*.mo"
]
[tool.tox]
legacy_tox_ini = """
[tox]
skipsdist = true
envlist = py310, py311, py312, py313
[testenv]
allowlist_externals = poetry
commands =
poetry install -v
poetry run pytest
"""
[tool.poetry.dependencies]
python = ">=3.10"
argparse = "^1.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.2"
tox = "^4.6.0"
flake8 = ">=7,<8"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
norminette = "norminette.__main__:main"