-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (41 loc) · 1008 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
49
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "snektalk"
version = "0.0.15"
description = "Advanced Python REPL"
authors = ["Olivier Breuleux <breuleux@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/breuleux/snektalk"
include = ["snektalk/assets/lib/**/*"]
[tool.poetry.dependencies]
python = "^3.8"
coleo = "^0.2.2"
jurigged = "^0.3.3"
hrepr = "^0.4.0"
ovld = "^0.3.2"
ptera = "^0.3.6"
sanic = "^20.9.1"
[tool.poetry.dev-dependencies]
black = "^19.3b0"
isort = "^5.6.4"
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
flake8 = "^3.8.4"
[tool.poetry.scripts]
snektalk = "snektalk.cli:main"
sktk = "snektalk.cli:main"
[tool.poetry.plugins.snektalk]
default = "snektalk.plugins.default:default_plugin"
[tool.black]
line-length = 80
[tool.isort]
known_first_party = "snektalk"
known_third_party = "coleo,hrepr"
multi_line_output = 3
include_trailing_comma = true
combine_as_imports = true
[tool.coverage.run]
omit = []