-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.towncrier]
package="tetris_human_ai"
filename="CHANGELOG.md"
issue_format = "`#{issue} <https://github.com/TetrisHumanAI/TetrisHumanAI/issues/{issue}>`_"
[[tool.towncrier.type]]
directory = "breaking"
name = "Backward-incompatible Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfixes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
[tool.black]
line-length = 90
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 90
# default is FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
# Placing third-party imports at the end makes their inclusion more obvious
sections = ["FUTURE", "STDLIB", "ATTRS", "ISIVISTA", "FIRSTPARTY", "THIRDPARTY", "LOCALFOLDER"]
known_attrs = ["attr"]
# Keep VISTA dependencies separate that aren't part of this project.
known_isivista = ["immutablecollections", "vistautils"]
[tool.poetry]
name = "Tetris_Human_AI"
version = "0.1.0"
description = "A short description of the project"
authors = ["Justin Martin <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
pygame = "^1.9.6"
attr = "^0.3.1"
more_itertools = "^8.5.0"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pytest = "^6.0.1"
coverage = "^5.2.1"
pytest-cov = "^2.10.1"
pytest-benchmark = "^3.2.3"
pylint = "^2.5.3"
flake8 = "^3.8.3"
mypy = "^0.782"
isort = "^4.3.21"
towncrier = "^19.2.0"
python-language-server = {extras = ["all"], version = "^0.34.1"}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"