forked from gmartins-eng/compiladores-2024-t1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (41 loc) · 1.28 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
[project]
name = "compiladores-2024-t1"
description = "Trabalho T1 da disciplina compiladores, do curso de Ciência da Computação, da Universidade LaSalle Canoas."
readme = "README.md"
version = "1.04.2024"
requires-python = ">=3.11"
license = { file="COPYING" }
classifiers = [
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dependencies = [
"black", "pylint", "flake8", "pydocstyle", "behave", "pytest"
]
[project.optional-dependencies]
tox = [ "tox" ]
[project.urls]
homepage = "https://github.com/rafasgj/compiladores-2024-t1"
repository = "https://github.com/rafasgj/compiladores-2024-t1"
issues = "https://github.com/rafasgj/compiladores-2024-t1/issues"
pull_requests = "https://github.com/rafasgj/compiladores-2024-t1/pulls"
discussions = "https://github.com/rafasgj/compiladores-2024-t1/discussions"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.black]
# line-length = 79
target-version = ['py311', 'py312']
include = '\.pyi?$'
[tool.pytest.ini_options]
minversion = "6.0"
pythonpath = "."
# pylint configuration
[tool.pylint.MASTER]
ignore-paths = '^src/ply/.*$'
[tool.pylint.'BASIC']
# max-line-length = 79
max-attributes = 10
good-names = [
"i", "j", "k", "x", "y"
]