-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
46 lines (41 loc) · 980 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
[tool.poetry]
name = "nicegui-highcharts"
version = "2.1.0"
description = "Add Highcharts elements to your NiceGUI app."
authors = ["Zauberzeug GmbH <info@zauberzeug.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/zauberzeug/nicegui-highcharts"
keywords = ["charts", "highcharts", "gui", "ui", "web"]
[tool.poetry.dependencies]
python = "^3.8"
nicegui = "^2.0.0 || ^2.0.0-dev"
docutils = "0.20.1" # fixes the error "Package docutils (0.21.post1) not found."
[build-system]
requires = [
"setuptools>=30.3.0,<50",
"poetry-core>=1.0.0"
]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.8"
[tool.ruff]
indent-width = 4
line-length = 120
[tool.ruff.lint]
select = [
"I", # isort
"E", # pycodestyle
"W", # pycodestyle
"B", # bugbear
"F", # pyflakes
"UP", # pyupgrade
"RUF", # ruff
"PL", # pylint
]
fixable = [
"I", # isort
]
ignore = [
"PLR0913", # too-many-arguments
]