-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (39 loc) · 1023 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (39 loc) · 1023 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "notquiteparadise2"
version = "0.1.0"
description = ""
authors = ["Snayff <snaith2@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
pygame = "^2.1.2"
PyTweening = "^1.0.3"
PyYAML = "^6.0"
snecs = "^1.2.2"
[tool.poetry.dev-dependencies]
isort = "^5.8.0"
black = "^22.3.0"
Sphinx = "^4.4.0"
sphinx-autodoc-annotation = "^1.0-1"
sphinx-autodoc-typehints = "^1.11.0"
sphinx-git = "^11.0.0"
sphinx-material = "^0.0.35"
pytest = "^7.1.1"
karma_sphinx_theme = "^0.0.8"
pre-commit = "^2.19.0"
[tool.black]
target-version = ['py38']
line-length = 120
[tool.isort]
profile = "black"
force_alphabetical_sort_within_sections = true
include_trailing_comma = true
sections = ['FUTURE', 'STDLIB', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER']
multi_line_output = 3
force_grid_wrap = 0
use_parentheses = true
line_length = 120
indent = 4
lines_between_types = 0
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"