-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
65 lines (60 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.poetry]
name = "esparto"
version = "4.3.1"
description = "Data driven report builder for the PyData ecosystem."
authors = ["Dominic Thorn <dominic.thorn@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://domvwt.github.io/esparto"
repository = "https://github.com/domvwt/esparto"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
]
[tool.poetry.dependencies]
python = ">=3.6.1"
jinja2 = ">=2.10.1"
markdown = ">=3.1"
pyyaml = ">=5.1"
beautifulsoup4 = ">=4.7"
dataclasses = {version = "*", python = "<3.7"}
# Optional dependencies
weasyprint = {version = ">=51", optional = true}
[tool.poetry.dev-dependencies]
black = {version = "^22.0", python = ">3.8"}
pytest = "^6.2.2"
rope = "^0.19.0"
IPython = "^7.3"
mkdocs = "^1.1.2"
matplotlib = {version = ">=3.4.0", python = ">=3.8"}
html5lib = "^1.1"
numpy = {version = "^1.22", python = ">=3.8"}
pandas = {version = "^1.5.0", python = ">=3.8"}
coverage = {version = "^5.5", python = "<4"}
mkdocs-material = "^7.1.0"
mkdocstrings = {version = "^0.15.0", python = "<4"}
pre-commit = "^2.12.0"
tox = "^3.23.0"
mypy = "^0.902"
isort = {version = "^5.8.0", python = "<4"}
flake8 = "^3.9.0"
bokeh = "^2.3.1"
plotly = "^4.14.3"
pandas-bokeh = "^0.5.5"
weasyprint = "52.5"
kaleido = "^0.2.1,!=0.2.1.post1"
types-Markdown = "^3.3.0"
pylint = {version = "^2.12.2", python = ">=3.6.2"}
types-PyYAML = "^6.0.4"
jupyter = "^1.0.0"
[tool.poetry.extras]
extras = ["weasyprint", "Pillow"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"