forked from viktor-platform/excel_graph_parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (46 loc) · 1.18 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
[project]
name = "excel_graph_parser"
version = "0.1.9"
description = "Parser to translate excel graphs to Plotly figures"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "D. Sommers", email = "[email protected]" }
]
maintainers = [
{name = "D. Sommers", email = "[email protected]" }
]
dependencies = [
"viktor",
"openpyxl",
"plotly"
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"pylint",
]
[project.urls]
"Homepage" = "https://github.com/viktor-platform/excel_graph_parser"
"Bug Reports" = "https://github.com/viktor-platform/excel_graph_parser/issues"
[tool.setuptools]
packages = ["excel_graph_parser"]
package-data = {"excel_graph_parser" = ["*.jinja"]}
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.isort]
profile = 'black'
line_length = 120
force_single_line = true
skip_glob = [".env"]
[tool.pylint.'MASTER']
max-line-length=120
[tool.pylint.'MESSAGES CONTROL']
disable=[
'no-name-in-module', # Suppresses E0611: No name 'XXX' in module 'viktor.YYY'
]