forked from wojciech-graj/cydoomgeneric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 857 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=18.0", "cython", "numpy>=1.25"]
build-backend = "setuptools.build_meta"
[project]
name = "cydoomgeneric"
description = "Easily portable doom for python"
version = "0.1.0"
authors = [
{name = "Wojciech Graj"}
]
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"numpy>=1.25"
]
[project.urls]
homepage = "https://github.com/wojciech-graj/cydoomgeneric"
[project.optional-dependencies]
dev = [
"pylsp-mypy",
"pylsp-rope",
"python-lsp-isort",
"python-lsp-server[all]"
]
pyplot = [
"matplotlib"
]
minepi = [
"mcpi",
"scikit-image"
]
mspaint = [
"pyautogui",
"pywinctl",
"scikit-image"
]
pygame = [
"pygame"
]
[tool.setuptools]
py-modules = []
[tool.pydocstyle]
ignore = ["D101", "D102", "D103", "D107", "D205", "D208", "D212", "D400", "D415"]