forked from 42School/norminette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 914 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
[tool.poetry]
name = "norminette"
version = "3.3.53"
description = "Open source C files linter for 42 Network campuses"
authors = ["42 <[email protected]>"]
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.8",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = "^3.8.1"
argparse = "^1.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.2"
tox = "^4.6.0"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
norminette = "norminette.__main__:main"