forked from fellowapp/prosemirror-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 918 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
[tool.poetry]
name = "prosemirror-py"
version = "0.1.3"
description = "Python implementation of core ProseMirror modules for collaborative editing"
readme = "README.md"
authors = ["Shen Li <[email protected]>"]
license = "BSD-3-Clause"
packages = [{ include = "prosemirror" }]
homepage = "https://github.com/fellowinsights/prosemirror-py"
repository = "https://github.com/fellowinsights/prosemirror-py"
keywords = ["prosemirror", "collaborative", "editing"]
[tool.poetry.dependencies]
python = ">=3.6,<4"
pyicu = "^2.3"
typing-extensions = "^3.7"
[tool.poetry.dev-dependencies]
black = { version = "19.10b0", allows-prereleases = true, python = ">=3.6" }
mypy = "^0.761"
pytest = "^5.3"
flake8 = "^3.7"
pydash = "^4.7"
pytest-cov = "^2.8"
pandoc = "^1.0"
isort = "^4.3"
codecov = "^2.0"
coverage = "^5.0"
[tool.black]
max-line-length=88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"