-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
44 lines (39 loc) · 977 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
[tool.poetry]
name = "train_invaders"
version = "v1.0.9"
description = "Jupyter Notebook + Space Invaders!?"
authors = ["Aporia"]
readme = "README.md"
repository = "https://github.com/aporia-ai/TrainInvaders"
classifiers = [
"Framework :: Jupyter",
"Topic :: Games/Entertainment :: Arcade",
"Programming Language :: JavaScript",
]
[tool.poetry.dependencies]
python = "^3.6"
ipython = "<=7.16"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
black = "^19.10b0"
flake8-black = "^0.1.1"
flake8-import-order = "^0.18.1"
flake8-bugbear = "^20.1.2"
flake8-bandit = "^2.1.2"
mypy = "^0.761"
flake8-annotations = "^2.0.0"
flake8-docstrings = "^1.5.0"
darglint = "^1.1.2"
isort = "^5.7.0"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
lexicographical = true
order_by_type = false
group_by_package = true
no_lines_before = ['LOCALFOLDER']
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"