-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (55 loc) · 1.27 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
[tool.poetry]
name = "minirt_converter"
version = "1.0.0"
description = "Convert .obj files to .rt files to render a triangle mesh effect for miniRT project at 42."
authors = ["mboivin <mboivin@student.42.fr>"]
license = "CC BY-NC 4.0"
readme = "README.md"
repository = "https://github.com/matboivin/minirt_mesh_converter"
documentation = "https://matboivin.github.io/minirt_mesh_converter/"
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9"
]
[tool.poetry.dependencies]
python = "^3.9"
coloredlogs = "^15.0.1"
verboselogs = "^1.7"
[tool.poetry.dev-dependencies]
bandit = "^1.7.4"
black = "^22.6.0"
isort = "^5.10.1"
pdoc = "^13.1.0"
pre-commit = "^2.20.0"
pycodestyle = "^2.9.1"
pylint = "^2.14.5"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
pretty = true
show_traceback = true
color_output = true
strict = true
ignore_missing_imports = true
allow_untyped_decorators = true
allow_subclassing_any = true
[tool.poetry.scripts]
minirt_converter = 'minirt_converter.main:entrypoint'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"