-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
50 lines (43 loc) · 1.07 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
[tool.poetry]
name = "notquiteparadise"
version = "0.1.0"
description = ""
authors = ["Snayff"]
[tool.poetry.dependencies]
python = "^3.8"
snecs = "^1.2.1"
pygame = "2.0.0.dev10"
pygame-gui = "^0.5.6"
pytweening = "^1.0.3"
tcod = "^11.18.0"
scipy = "^1.4.1"
[tool.poetry.dev-dependencies]
sphinx = "^3.3.1"
mypy = "^0.790"
vulture = "^2.1"
isort = "^5.6.4"
black = "^20.8b1"
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
sphinx-autodoc-annotation = "^1.0-1"
sphinx-autodoc-typehints = "^1.11.0"
sphinx-git = "^11.0.0"
codecov = "^2.1.10"
pytest-benchmark = {extras = ["histogram"], version = "^3.2.3"}
sphinx-material = {git = "https://github.com/bashtage/sphinx-material.git"}
[tool.black]
target-version = ['py38']
line-length = 120
[tool.isort]
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>=0.12"]
build-backend = "poetry.masonry.api"