-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
52 lines (45 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "terminal_dungeon"
description = "A raycasting library for your terminal!"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "salt-die", email = "[email protected]"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.26.4",
"pynput>=1.7.5",
"windows-curses>=2.3.2; platform_system=='Windows'",
]
dynamic = ["version"]
[project.urls]
"repository" = "https://github.com/salt-die/terminal_dungeon"
[tool.setuptools.dynamic]
version = {attr = "terminal_dungeon.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
exclude = []
[tool.ruff.lint]
select = [
"D", # pydocstyle
"F", # pyflakes
"E", # pycodestyle - error
"W", # pycodestyle - warning
"I", # isort
]
ignore = [
"D105", # undocumented-magic-method
"D205", # blank-line-after-summary -- This rule seems bugged for summaries that need more than one line.
]
fixable = ["ALL"]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.ruff.pycodestyle]
max-doc-length=88