-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (31 loc) · 844 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
[tool.poetry]
name = "pyplater"
version = "2.1.3-beta"
readme = "README.rst"
description = "Build html component with python"
authors = ["Unviray <[email protected]>"]
homepage = "https://github.com/Unviray/pyplater"
repository = "https://github.com/Unviray/pyplater"
license = "MIT"
keywords = ["html", "component", "react", "angular", "vue"]
packages = [
{ include = "pyplater" },
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
coveralls = "^3.0.1"
flake8 = "^3.9.0"
flake8-blind-except = "^0.2.0"
flake8-bugbear = "^21.3.2"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.4.0"
flake8-debugger = "^4.0.0"
flake8-isort = "^4.0.0"
icecream = "^2.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"