-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 loc) · 1.11 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
[tool.black]
py36 = true
skip-string-normalization = true
[tool.poetry]
name = "knitj"
version = "0.3.1"
description = "Alternative Jupyter front-end"
readme = "README.md"
authors = ["Jan Hermann <[email protected]>"]
repository = "https://github.com/jhrmnn/knitj"
license = "MPL-2.0"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: POSIX',
'Topic :: Utilities',
]
[tool.poetry.dependencies]
python = "^3.6"
watchdog = "^0.9.0"
jupyter-client = "^5.2"
ansi2html = "^1.5"
misaka = "^2.1"
aiohttp = "^3.4"
pygments = "^2.2"
Jinja2 = "^2.10"
beautifulsoup4 = "^4.6"
pyyaml = "^3.13"
[tool.poetry.scripts]
knitj = "knitj.cli:main"
[tool.poetry.dev-dependencies]
mypy = "^0.641.0"
lxml = "^4.2"
flake8 = "^3.6"
flake8-bugbear = "^18.8"
flake8-comprehensions = "^1.4"
flake8-quotes = "^1.0"
black = "^18.3-alpha.0"
ipykernel = "^5.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"