-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (25 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
32 lines (25 loc) · 802 Bytes
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
[project]
name = "modelviewprojection"
version = "0.0.2"
authors = [{name="William Emerison Six", email="billsix@gmail.com"}]
description = "ModelViewProjection - Tutorial for learning 3D Programming"
dynamic = ['dependencies']
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest]
testpaths = ["tests"]
[tool.ruff.lint]
select = [
'F401', 'F811', 'E402', 'I001', 'TID252', "F841",
"E302", "E231", "B006", "B007", "B008", "UP007",
"UP035", "S311", "S602", "T201",
"E", "F", "I"
]
ignore = []
[project.scripts]
generate_plots_for_book = "modelviewprojection.plotsforbook.generate_plots:main"